Closures
2 sectionsRapid overview
Closures
TL;DR
A closure is a function bundled with the variables it uses from the scope around it, so it can keep using them after that scope has returned. In C#, any lambda (see the Lambda Expressions module), anonymous method or local function that ref…
Read →How it works
Q: What is a closure?
Read →