Tip How to capture a variable and not to shoot yourself in the foot

ilya089

New member
Joined
Jul 3, 2017
Messages
1
Programming Experience
Beginner
Back in 2005, with the release of C# 2.0 standard we got a possibility to pass a variable to the body of an anonymous delegate by capturing it from the current context. In 2008 the C# 3.0 brought us lambdas, user anonymous classes, LINQ requests and much more. Now it January, 2017 and the majority of C# developers are looking forward to the release of the C# 7.0 standard that should provide us a bunch of new useful features. However, there are still old features that need to be fixed. That's why there are plenty of ways to shoot yourself in the foot. Today we are going to speak about one of them, and it is related with quite an unobvious mechanism of variable capture in the body of anonymous functions in C#.
Full article: How to capture a variable in C# and not to shoot yourself in the foot
 
Back
Top Bottom