Skip to content

Instantly share code, notes, and snippets.

@Sergio0694
Last active September 25, 2019 11:56
Show Gist options
  • Save Sergio0694/24072bb69742526dd116c78015ba9653 to your computer and use it in GitHub Desktop.
Save Sergio0694/24072bb69742526dd116c78015ba9653 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