vote up 4 vote down star
1

Duplicate

Closures in .NET

What are closures in C#?

flag
Duplicate: stackoverflow.com/questions/428617/… – Adam Lassek Feb 27 at 16:31

closed as exact duplicate by Rich B, George Stocker, Josh, JaredPar, itsmatt Feb 27 at 16:36

1 Answer

vote up 11 vote down check

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

public Person FindById(int id)
{
    return this.Find(delegate(Person p)
    {
        return (p.Id == id);
    });
}

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....

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.