Last active
September 25, 2019 11:56
-
-
Save Sergio0694/24072bb69742526dd116c78015ba9653 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
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