Is there an actual difference in the 2 different ways of attaching event handlers in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:27:10Z http://stackoverflow.com/feeds/question/214346 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/214346/is-there-an-actual-difference-in-the-2-different-ways-of-attaching-event-handlers 4 Is there an actual difference in the 2 different ways of attaching event handlers in C#? DuckMaestro 2008-10-18T01:25:08Z 2008-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#214353 10 Answer by Alexander Kojevnikov for Is there an actual difference in the 2 different ways of attaching event handlers in C#? Alexander Kojevnikov 2008-10-18T01:31:45Z 2008-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#214358 3 Answer by Dested for Is there an actual difference in the 2 different ways of attaching event handlers in C#? Dested 2008-10-18T01:33:51Z 2008-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>