Is there an actual difference in the 2 different ways of attaching event handlers in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T18:27:10Zhttp://stackoverflow.com/feeds/question/214346http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/214346/is-there-an-actual-difference-in-the-2-different-ways-of-attaching-event-handlers4Is there an actual difference in the 2 different ways of attaching event handlers in C#?DuckMaestro2008-10-18T01:25:08Z2008-10-24T11:31:52Z
<p>In C# is there any real difference (other than syntax) under the hood between:</p>
<pre><code>myButton.Click += new EventHandler(myMemberMethod);
</code></pre>
<p>and</p>
<pre><code>myButton.Click += myMemberMethod;
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/214346/is-there-an-actual-difference-in-the-2-different-ways-of-attaching-event-handlers/214353#21435310Answer by Alexander Kojevnikov for Is there an actual difference in the 2 different ways of attaching event handlers in C#?Alexander Kojevnikov2008-10-18T01:31:45Z2008-10-18T01:31:45Z<p>The second method is a shortcut to the first one, it was introduced in C# 2.0</p>
<p>See also <a href="http://stackoverflow.com/questions/119160/what-is-the-difference-between-events-with-delegate-handlers-and-those-without">this thread</a>.</p>
http://stackoverflow.com/questions/214346/is-there-an-actual-difference-in-the-2-different-ways-of-attaching-event-handlers/214358#2143583Answer by Dested for Is there an actual difference in the 2 different ways of attaching event handlers in C#?Dested2008-10-18T01:33:51Z2008-10-18T01:33:51Z<p>They are exactly the same, its called syntax sugar.</p>
<p>There are a lot of things that arent needed, to get a better idea of them while programming you should try something like <a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a>. It will color the unnecessary code in Grey. Not to mention a whole myriad of incredible tools and refactorings. </p>