So, probably a simple question with a simple answer, but I don't know what it is and I am curious :). Why does the compiler allow me to do something like this?
button1.Click += delegate { someFlag = true; };
(I can only use .NET 2.0, so no lamdas, but the same concept)
I cannot however do this:
button1.Click += MyDelegateMethod
// snip
// compile error, signature does not match the signature of System.EventHandler.
private void MyDelegateMethod( )
{
}
I would expect that I would have to declare my anonymous method as:
delegate(object sender, EventArgs e) { someFlag = true; };
I don't understand why it is ok for an anonymous method, but not ok when I write the full method itself. Anyone?
