我应该创建一个新委托实例? [英] Should I Create a New Delegate Instance?

查看:96
本文介绍了我应该创建一个新委托实例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是做这个...

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.

http://www.developer.com/net/csharp/article.php/3103031/Working-with-Delegates-Made-Easier-with-C-20.htm

这篇关于我应该创建一个新委托实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆