**Avoid checking for null event handlers**

Adding an empty delegate to events at declaration, suppressing the need to always check the event for null before calling it is awesome. Example:

    public delegate void MyClickHandler(object sender, string myValue);
    public event MyClickHandler Click = delegate {}; // add empty delegate!

Let you do this

    public void DoSomething()
    {
        Click(this, "foo");
    }

Instead of this

    public void DoSomething()
    {
        // Unnecessary!
        MyClickHandler click = Click;
        if (click != null) // Unnecessary! 
        {
            click(this, "foo");
        }
    }

Please also see this [related discussion][1] and this [blog post][2] by Eric Lippert on this topic (and possible downsides).


  [1]: http://stackoverflow.com/questions/840715/the-proper-way-of-raising-events-in-the-net-framework
  [2]: http://blogs.msdn.com/ericlippert/archive/2009/04/29/events-and-races.aspx