Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created January 6, 2019 22:44
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 carloscds/30e41cb7e56c560d897c936e421016a8 to your computer and use it in GitHub Desktop.
Save carloscds/30e41cb7e56c560d897c936e421016a8 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
int[] num = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
foreach(int i in num)
{
Console.WriteLine(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment