Tag: Development

Community

C# Closures

(Richard Carr) Closures are usually associated with functional programming languages, where they link a function to its referencing environment, permitting access to variables outside of the function’s scope. With the use of delegates, closures are available in C#.