Is there an actual difference in the 2 different ways of attaching event handlers in C#?
c#, delegates, events, handlers, syntax
Solution
The second method is a shortcut to the first one, it was introduced in C# 2.0
See also this thread.
Problem
In C# is there any real difference (other than syntax) under the hood between: ``` myButton.Click += new EventHandler(myMemberMethod); ``` and ``` myButton.Click += myMemberMethod; ``` ?