Created
July 29, 2018 10:30
-
-
Save rexcfnghk/f75a2c46a561459f561641eb784ac03a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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