Given the following sample codes:
static void SomeMethod()
{
Action<int,int> myDelegate;
//...
myDelegate = delegate { Console.WriteLine( 0 ); };
myDelegate = delegate() { Console.WriteLine( 0 ); }; // compile error
}
What is the difference between
myDelegate = delegate { Console.WriteLine( 0 ); };
and
myDelegate = delegate() { Console.WriteLine( 0 ); };
?
In this example, the second statement generates compile error while the first one does not.