Created
July 29, 2018 07:31
-
-
Save rexcfnghk/d51ed7dbf4b530e2d3370def8fea3f62 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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment