Self Executing Anonymous Function
Not because it is all that new, but because it took me a while to find it, here’s how to create a self executing anonymous function using CSharp, just like you can do in JavaScript.
((Func<int>)(delegate()
{
return 0;
}))();Func<int> says the the delegate will return an integer. If you need to pass a parameter you can use the alternate form of Func<parameterType,returnType>
delegate() {return 0;} is just basic delegate syntax that I’ve discussed in the past.… Read the rest
This post was originally found at .NET Answers the original article can be found at Self Executing Anonymous Function
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)




