Skip to content

Instantly share code, notes, and snippets.

@Sergio0694
Last active September 25, 2019 11:58
Show Gist options
  • Save Sergio0694/7223b155fcbd649f9b3556242f765510 to your computer and use it in GitHub Desktop.
Save Sergio0694/7223b155fcbd649f9b3556242f765510 to your computer and use it in GitHub Desktop.
public static void Main()
{
int[] array = new int[100];
int value = 1;
Action<int> action = i => array[i] = value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment