C# Event handlers - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:44:06Zhttp://stackoverflow.com/feeds/question/26877http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26877/c-event-handlers6C# Event handlersBlorgbeard2008-08-25T20:59:54Z2008-08-25T22:31:30Z
<p>In C#, what is the difference (if any) between these two lines of code?</p>
<pre><code>tmrMain.Elapsed += new ElapsedEventHandler(tmrMain_Tick);
</code></pre>
<p>and</p>
<pre><code>tmrMain.Elapsed += tmrMain_Tick;
</code></pre>
<p>Both appear to work exactly the same. Does C# just assume you mean the former when you type the latter?</p>
http://stackoverflow.com/questions/26877/c-event-handlers/26884#2688413Answer by Orion Edwards for C# Event handlersOrion Edwards2008-08-25T21:02:27Z2008-08-25T21:07:28Z<p>I did this</p>
<pre><code>static void Hook1()
{
someEvent += new EventHandler( Program_someEvent );
}
static void Hook2()
{
someEvent += Program_someEvent;
}
</code></pre>
<p>And then ran ildasm over the code.<br />
The generated MSIL was exactly the same.</p>
<p>So to answer your question, yes they are the same thing.<br />
The compiler is just inferring that you want <code>someEvent += new EventHandler( Program_someEvent );</code><br />
-- You can see it creating the new <code>EventHandler</code> object in both cases in the MSIL</p>
http://stackoverflow.com/questions/26877/c-event-handlers/26892#268920Answer by Vaibhav for C# Event handlersVaibhav2008-08-25T21:05:20Z2008-08-25T21:05:20Z<p>Well, they both work alright. Then why does Visual Studio choose the former over the latter when it auto creates the event handler stub?</p>
http://stackoverflow.com/questions/26877/c-event-handlers/26893#268932Answer by Ray for C# Event handlersRay2008-08-25T21:05:48Z2008-08-25T21:05:48Z<p>I don't think there's any difference. Certainly resharper says the first line has redundant code.</p>
http://stackoverflow.com/questions/26877/c-event-handlers/26895#26895-1Answer by Rob Cooper for C# Event handlersRob Cooper2008-08-25T21:06:26Z2008-08-25T21:06:26Z<p>I think the one way to really tell would be to look at the MSIL produced for the code.. Tends to be a good acid test..</p>
<p>I have funny concerns that it may somehow mess with GC.. Seems odd that there would be all the overhead of declaring the new delegate type if it never needed to be done this way, you know?</p>
http://stackoverflow.com/questions/26877/c-event-handlers/26913#269130Answer by Timbo for C# Event handlersTimbo2008-08-25T21:13:04Z2008-08-25T21:13:04Z<p>Wasn't the <code>new XYZEventHandler</code> require until C#2003, and you were allowed to omit the redundant code in C#2005?</p>
http://stackoverflow.com/questions/26877/c-event-handlers/26919#269193Answer by dp for C# Event handlersdp2008-08-25T21:15:55Z2008-08-25T21:15:55Z<p>It used to be (.NET 1.x days) that the long form was the only way to do it. In both cases you are newing up a delegate to point to the Program_someEvent method.</p>
http://stackoverflow.com/questions/26877/c-event-handlers/27048#270481Answer by Andrei Rinea for C# Event handlersAndrei Rinea2008-08-25T22:31:30Z2008-08-25T22:31:30Z<p>A little offtopic :</p>
<p>You could instantiate a delegate (new EventHandler(MethodName)) and (if appropiate) reuse that instance.</p>