In C# is there any real difference (other than syntax) under the hood between:
myButton.Click += new EventHandler(myMemberMethod);
and
The second method is a shortcut to the first one, it was introduced in C# 2.0
See also this thread.