Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Created July 29, 2018 07:31
Show Gist options
  • Save rexcfnghk/d51ed7dbf4b530e2d3370def8fea3f62 to your computer and use it in GitHub Desktop.
Save rexcfnghk/d51ed7dbf4b530e2d3370def8fea3f62 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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment