Skip to content

Instantly share code, notes, and snippets.

@kcha4github
Created July 24, 2018 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kcha4github/75b9b1467cd1e8b4d95173efe04e6b70 to your computer and use it in GitHub Desktop.
Save kcha4github/75b9b1467cd1e8b4d95173efe04e6b70 to your computer and use it in GitHub Desktop.
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
int[] values = new int[5] { 1, 2, 3, 4, 5 };
Console.WriteLine(string.Join(" ", values));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment