show/hide this revision's text 3 addition

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.

show/hide this revision's text 2 elaboration

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.

show/hide this revision's text 1

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.