Differences in assigning C# event handlers?(分配 C# 事件处理程序的区别?)
问题描述
我总是分配这样的事件处理程序,由 Intellisense 自动完成引导.
I've always assigned event handlers like this, guided by Intellisense auto-completion.
RangeSelector.RangeChanged += new EventHandler(RangeSelector_RangeChanged);
我最近注意到我的一位同事这样做.
I've recently noticed one of my colleagues does it this way.
RangeSelector.RangeChanged += RangeSelector_RangeChanged;
这两种方法在语法上都是正确的,编译和行为都符合预期.
Both methods are syntactically correct, compile and behave as expected.
这些方法有什么区别、优点或缺点.它们会产生相同的 IL 代码还是我需要注意一些细微的差异?
What are the differences, benefits or disadvantages of these methods. Do they result in the same IL code or is there some subtle difference that I need to be aware of?
推荐答案
这些方法有什么区别、优点或缺点.
What are the differences, benefits or disadvantages of these methods.
第二种方法较新,即仅从 C# 2.0(我相信)开始支持它,它添加了从方法组(即方法名称)到委托的自动转换.因此编译器添加了构造函数调用,而第二种方法只是第一种方法的语法糖.
The second method is newer, i.e. it is only supported since C# 2.0 (I believe), which added an automatic conversion from a method group (i.e. a method name) to a delegate. The constructor call is thus added by the compiler and the second method is just syntactic sugar for the first one.
因此,两者之间没有其他区别.
Because of that, there are no other differences between the two.
由于第二种方法与第一种方法相同,语法较少,因此应该首选.
Since the second method does the same as the first, with less syntax, it should be preferred.
这篇关于分配 C# 事件处理程序的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:分配 C# 事件处理程序的区别?
基础教程推荐
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
