我应该创建一个新委托实例?
问题描述:
什么是做这个...
this.myButton.Click += new EventHandler(this.myButton_Clicked);
...此相比?
...versus this?
this.myButton.Click += this.myButton_Clicked;
我怀疑是编译器在第二个例子中创建一个新的实例给我。我敢肯定,这是一个有点新手的问题,但谷歌没来任何东西。谁能给我一些见解?
I suspect that the compiler is creating a new instance for me in the second example. I'm sure this is a bit of a newbie question, but Google didn't turn up anything. Can anyone give me some insight?
答
第二语法是一日一中介绍了C#2.0的快捷方式。
The 2nd syntax is a shortcut for the 1st one introduced in C# 2.0.