Possible Duplicate:
C#: Difference between ' += anEvent' and ' += new EventHandler(anEvent)'
What is difference between these two lines?
button1.OnClick += SomeClickMethod;
button1.OnClick += new EventHandler(SomeElickMethod);
Is there any difference between these two and if there is what are differences, which one is better?