C#

Home/Tag: C#

Introduction to Closures in C#

Have you noticed that Resharper will occasionally give you a warning with the message “Access to modified closure” when referencing a variable within an anonymous method or lambda expression? Take the following code snippet for example: class Program { static void Main(string[] args) { List<Action> actions = new List<Action>(); for (int i = 1; i

Tags: , |