Can someone explain Anonymous methods to me?
Please have a look at closures. Delphi anonymous functions are closures. These are created within other functions and as such has access to the scope of that function. This is even so if the anonumous function is assigned to a function parameter that is called after the original function is called. (I will create an … Read more