Skip to content

Instantly share code, notes, and snippets.

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