Difference between wiring events with and without quot;newquot;(有和没有“新的接线事件之间的区别)
问题描述
在 C# 中,这两行代码有什么区别(如果有的话)?
In C#, what is the difference (if any) between these two lines of code?
tmrMain.Elapsed += new ElapsedEventHandler(tmrMain_Tick);
和
tmrMain.Elapsed += tmrMain_Tick;
两者的工作方式似乎完全相同.当您键入后者时,C# 是否只是假设您指的是前者?
Both appear to work exactly the same. Does C# just assume you mean the former when you type the latter?
推荐答案
我做到了
static void Hook1()
{
someEvent += new EventHandler( Program_someEvent );
}
static void Hook2()
{
someEvent += Program_someEvent;
}
然后在代码上运行 ildasm.
生成的 MSIL 完全一样.
And then ran ildasm over the code.
The generated MSIL was exactly the same.
所以要回答你的问题,是的,它们是一回事.
编译器只是推断您想要 someEvent += new EventHandler( Program_someEvent );
-- 您可以在 MSIL 中看到它在两种情况下都创建了新的 EventHandler
对象
So to answer your question, yes they are the same thing.
The compiler is just inferring that you want someEvent += new EventHandler( Program_someEvent );
-- You can see it creating the new EventHandler
object in both cases in the MSIL
这篇关于有和没有“新"的接线事件之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有和没有“新"的接线事件之间的区别


基础教程推荐
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01