“ClosureAndFor” (Problem)
What will the following code display?
var actions = new List<Action>();
for (int i = 0; i < 3; i++)
actions.Add(() => Console.WriteLine(i));
foreach (var action in actions)
action();
Last updated
Was this helpful?
What will the following code display?
var actions = new List<Action>();
for (int i = 0; i < 3; i++)
actions.Add(() => Console.WriteLine(i));
foreach (var action in actions)
action();
Last updated
Was this helpful?