C# Event handlers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:44:06Z http://stackoverflow.com/feeds/question/26877 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/26877/c-event-handlers 6 C# Event handlers Blorgbeard 2008-08-25T20:59:54Z 2008-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#26884 13 Answer by Orion Edwards for C# Event handlers Orion Edwards 2008-08-25T21:02:27Z 2008-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#26892 0 Answer by Vaibhav for C# Event handlers Vaibhav 2008-08-25T21:05:20Z 2008-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#26893 2 Answer by Ray for C# Event handlers Ray 2008-08-25T21:05:48Z 2008-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 -1 Answer by Rob Cooper for C# Event handlers Rob Cooper 2008-08-25T21:06:26Z 2008-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#26913 0 Answer by Timbo for C# Event handlers Timbo 2008-08-25T21:13:04Z 2008-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#26919 3 Answer by dp for C# Event handlers dp 2008-08-25T21:15:55Z 2008-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#27048 1 Answer by Andrei Rinea for C# Event handlers Andrei Rinea 2008-08-25T22:31:30Z 2008-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>