Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created January 6, 2019 22:47
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/dd83c0a2d189eb7e806ff235eee26dfd to your computer and use it in GitHub Desktop.
Save carloscds/dd83c0a2d189eb7e806ff235eee26dfd 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[1..5])
{
Console.WriteLine(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment