Skip to content

Instantly share code, notes, and snippets.

@IneonInoodle
Created September 11, 2018 08:32
Show Gist options
  • Save IneonInoodle/0cc41651261ca9b3622b2a81d752e113 to your computer and use it in GitHub Desktop.
Save IneonInoodle/0cc41651261ca9b3622b2a81d752e113 to your computer and use it in GitHub Desktop.
foreach (Foo bar in baz)
{
...
}
IEnumerator bat = baz.GetEnumerator();
while (bat.MoveNext())
{
bar = (Foo)bat.Current
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment