Why use quot;new DelegateType(Delegate)quot;?(为什么使用“new DelegateType(Delegate)?)
问题描述
好的,假设您在某个类中定义了一个委托.
Ok, suppose you define a delegate in some class.
public delegate void StringDelegate (string s);
另一个类实现了一个方法:
and another class implements a method :
public static void StringWriter (string s) {...}
在我正在阅读Programming C#"第 4 版的书中,他们使用 new 关键字创建委托,例如:
In the book that I'm reading "Programming C#" 4th ed they create delegates using the new keyword, ex:
ClassDelegate.StringDelegate writer;
writer = new ClassDelegate.StringDelegate (DelegateImplementer.StringWriter);
writer("Hello");
不过,我看到也可以这样调用委托方法
However, I see one can also call the delegate method this way
ClassDelegate.StringDelegate writer;
writer = DelegateImplementer.StringWriter;
writer ("Hello");
有什么区别?当我可以简单地传递或引用方法委托的签名时,为什么还要实例化并创建一个对象委托.
What's the difference? Why do I want instantiate and create an object delegate when I can just simply pass or make reference to the signature of the method delegate.
推荐答案
这两种说法绝对没有区别.writer = DelegateImplementer.StringWriter;
仍然创建一个 delegate
对象;编译器将为您生成 new ClassDelegate.StringDelegate ()
.这只是 在 C# 2.0 中添加的更简洁的语法.
There is absolutely no difference between the two statements. writer = DelegateImplementer.StringWriter;
still creates a delegate
object; the compiler will generate the new ClassDelegate.StringDelegate ()
for you. It's just a cleaner syntax that was added in C# 2.0.
正如@Ben Voigt 在他的回答中提到的,只有在使用 Control.Invoke() 例如.
As @Ben Voigt mentioned in his answer is only required in C# 2.0 where the compiler can't deduce the type of the delegate, when using Control.Invoke() for example.
这篇关于为什么使用“new DelegateType(Delegate)"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么使用“new DelegateType(Delegate)"?


- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01