Is there a way to execute a lambda expression immediately after its definition?
In other words (Invalid C# code):
You should be able to do this:
Action runMe = () => { Console.WriteLine("Hello World"); }; runMe();