Skip to content

Instantly share code, notes, and snippets.

View okyrylchuk's full-sized avatar

Oleg Kyrylchuk okyrylchuk

View GitHub Profile
@okyrylchuk
okyrylchuk / Program.cs
Created January 19, 2022 23:18
Extensions GetEnumerator for foreach loops with Range type
foreach (int i in 3..5)
{
Console.WriteLine(i);
}
foreach (int i in ..3)
{
Console.WriteLine(i);
}