Duplicate
What are closures in C#?
|
1
|
|||
|
closed as exact duplicate by Rich B, George Stocker, Josh, JaredPar, itsmatt Feb 27 at 16:36 |
|
|
A closure in C# takes the form of an in-line delegate/anonymous method. A closure is attached to its parent method meaning that variables defined parents method body can be referenced within the anonymous method. There is a great Blog Post here about it. Example
You could also take a look at Martin Fowler or Jon Skeet blogs. I am sure you will be able to get a more "In Depth" breakdown from at least one of them.... |
|||
|
|