Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Created July 29, 2018 10:30
Show Gist options
  • Save rexcfnghk/f75a2c46a561459f561641eb784ac03a to your computer and use it in GitHub Desktop.
Save rexcfnghk/f75a2c46a561459f561641eb784ac03a to your computer and use it in GitHub Desktop.
void Foo()
{
var list = new[] { 1, 2, 3, 4, 5 };
for (int i = 0; i < list.Length; i++)
{
list[i] *= 2;
}
// i is not visible here anymore
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment