Take the below code:

private void anEvent(object sender, EventArgs e) {
    //some code
}


What is the difference between the following ?

[object].[event] += anEvent;

//and

[object].[event] += new EventHandler(anEvent);

[UPDATE]

Apparently, there is no difference between the two...the former is just syntactic sugar of the latter.

link|improve this question

1  
A tool like Resharper will recommend you remove the superfluous code since it just adds noise. – Chris Marisic Feb 15 '09 at 23:34
feedback

3 Answers

up vote 36 down vote accepted

There is no difference. In your first example, the compiler will automatically infer the delegate you would like to instantiate. In the second example, you explicitly define the delegate.

Delegate inference was added in C# 2.0. So for C# 1.0 projects, second example was your only option. For 2.0 projects, the first example using inference is what I would prefer to use and see in the codebase - since it is more concise.

link|improve this answer
feedback
[object].[event] += anEvent;

is just syntactic sugar for -

[object].[event] += new EventHandler(anEvent);
link|improve this answer
feedback

I don't think there is a difference. The compiler transforms the first into the second.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.