In C# is there any real difference (other than syntax) under the hood between:
myButton.Click += new EventHandler(myMemberMethod);
and
myButton.Click += myMemberMethod;
?
|
2 | Code formatting | ||
|
In C# is there any real difference (other than syntax) under the hood between:
and
? |
||||
|
1 |
|
||