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();
Solution
Last updated 5 years ago