Why use EventArgs.Empty instead of null? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:01:05Z http://stackoverflow.com/feeds/question/188692 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188692/why-use-eventargs-empty-instead-of-null 12 Why use EventArgs.Empty instead of null? Greg D 2008-10-09T19:01:04Z 2009-06-03T22:45:43Z <p>I recall reading, on multiple occasions and in multiple locations, that when firing the typical event:</p> <pre><code>protected virtual OnSomethingHappened() { this.SomethingHappened(this, EventArgs.Empty); } </code></pre> <p>e should be EventArgs.Empty if there are no interesting event args, not null.</p> <p>I've followed the guidance in my code, but I realized that I'm not clear on why that's the preferred technique.</p> <ol> <li>Why does the stated contract prefer EventArgs.Empty over null?</li> <li>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? </li> <li>Has the addition of nullable value types impacted these decisions?</li> </ol> http://stackoverflow.com/questions/188692/why-use-eventargs-empty-instead-of-null/188723#188723 9 Answer by Mitchel Sellers for Why use EventArgs.Empty instead of null? Mitchel Sellers 2008-10-09T19:07:58Z 2008-10-09T19:07:58Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/188692/why-use-eventargs-empty-instead-of-null/188737#188737 1 Answer by Mark Cidade for Why use EventArgs.Empty instead of null? Mark Cidade 2008-10-09T19:10:27Z 2008-10-09T19:10:27Z <p>If you're using a general-purpose method which has the <code>EventHandler</code> signature that's called from any event handler and is passed both the <em><code>object sender</code></em> and <em><code>EventArgs e</code></em>, it can call <code>e.ToString()</code>, e.g., for logging events, without worrying about a null pointer exception.</p> http://stackoverflow.com/questions/188692/why-use-eventargs-empty-instead-of-null/188743#188743 4 Answer by forcripesake for Why use EventArgs.Empty instead of null? forcripesake 2008-10-09T19:12:14Z 2008-10-09T19:25:34Z <p>I believe EventArgs.Empty is used to maintain the convention of passing an argument with an event, even if none are needed. </p> <p>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).</p> <p>EventArgs.Empty basically does the work of a globally defined Event Argument with no additional information.</p> <p>EDIT</p> <p>To give a similar example of maintaining a convention- our team uses <code>string.empty</code> to initialize a string b/c otherwise different coders might use <code>newString = ""; or newString = " "; or newString = null;</code> </p> <p>All of which may produce different results for different check conditions. </p> <p>EDIT #2</p> <p>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.</p> http://stackoverflow.com/questions/188692/why-use-eventargs-empty-instead-of-null/188779#188779 0 Answer by Daok for Why use EventArgs.Empty instead of null? Daok 2008-10-09T19:20:38Z 2008-10-09T19:20:38Z <p>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.</p> http://stackoverflow.com/questions/188692/why-use-eventargs-empty-instead-of-null/947677#947677 3 Answer by Martin Konicek for Why use EventArgs.Empty instead of null? Martin Konicek 2009-06-03T22:45:43Z 2009-06-03T22:45:43Z <p>EventArgs.Empty is an instance of <a href="http://en.wikipedia.org/wiki/Null%5FObject%5Fpattern" rel="nofollow">Null object pattern</a> </p> <p>Basically as others said, having an object representing "no value" to avoid checking for null when using it.</p>