vote up 12 vote down star
1

I recall reading, on multiple occasions and in multiple locations, that when firing the typical event:

protected virtual OnSomethingHappened()
{
    this.SomethingHappened(this, EventArgs.Empty);
}

e should be EventArgs.Empty if there are no interesting event args, not null.

I've followed the guidance in my code, but I realized that I'm not clear on why that's the preferred technique.

  1. Why does the stated contract prefer EventArgs.Empty over null?
  2. What sort of situations in my own code would justify a similar design decision? When should I consider creating some static "Nothing interesting here" property instead of using null to indicate the absence of something interesting?
  3. Has the addition of nullable value types impacted these decisions?
flag

Excellent question! – Jarrod Dixon Oct 9 '08 at 19:05
Thanks. :) I just realized that I've been doing cargo-cult programming in this particular way for years, now I want to know why. :) – Greg D Oct 9 '08 at 19:08

5 Answers

vote up 9 vote down check

I believe the reasoning behind the NOT NULL is that when passed as a parameter, it is not expected for the method to need to potentially handle a null reference exception.

If you pass null, and the method tries to do something with e it will get a null reference exception, with EventArgs.Empty it will not.

link|flag
In what situations would you use a similar technique in your own code? – Greg D Oct 9 '08 at 19:49
1  
If one method might pass event information and another might not. I can still call e.ToString() regardless, but one might pass a custom type and the other passes EventArgs.Empty – Mitchel Sellers Oct 9 '08 at 20:07
vote up 1 vote down

If you're using a general-purpose method which has the EventHandler signature that's called from any event handler and is passed both the object sender and EventArgs e, it can call e.ToString(), e.g., for logging events, without worrying about a null pointer exception.

link|flag
vote up 4 vote down

I believe EventArgs.Empty is used to maintain the convention of passing an argument with an event, even if none are needed.

Mitchel Sellers posted the other half of my reason halfway through my post: it prevents a null reference exception should a method try and do something with that argument (besides check if it is null).

EventArgs.Empty basically does the work of a globally defined Event Argument with no additional information.

EDIT

To give a similar example of maintaining a convention- our team uses string.empty to initialize a string b/c otherwise different coders might use newString = ""; or newString = " "; or newString = null;

All of which may produce different results for different check conditions.

EDIT #2

A (slightly pedantic) reason to use EventArgs.Empty Vs new EventArgs() is that the former does not initialize a new EventArgs, saving a slight amount of memory.

link|flag
vote up 0 vote down

I used long time "new EventArgs()" instead of "EventArgs.Empty"... I think the important is to pass something that will not cause an Null exception.

link|flag
EventArgs.Empty isn't null, it's a static variable initialized with "new EventArgs()". It means you don't end up wasting resources initializing what is effectively a placeholder object with no varying value. – ICR Oct 10 '08 at 12:21
vote up 3 vote down

EventArgs.Empty is an instance of Null object pattern

Basically as others said, having an object representing "no value" to avoid checking for null when using it.

link|flag

Your Answer

Get an OpenID
or

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