vote up 25 vote down star
14

Evil or not evil?

public static void Raise(this EventHandler handler, object sender, EventArgs args)
{
   if (handler != null)
   {
      handler(sender, args);
   }
}

// Usage:
MyButtonClicked.Raise(this, EventArgs.Empty);

// This works too! Evil?
EventHandler handler = null;
handler.Raise(this, EVentArgs.Empty);

Note that due to the nature of extension methods, MyButtonClicked.Raise will not throw a NullReferenceException if MyButtonClicked is null. (E.g. there are no listeners to MyButtonClicked event).

Evil or not?

flag

Better question: useful or not? – Jason Bunting Oct 29 '08 at 19:21
It's useful. Instead of littering hundreds of "if (SomeEvent != null) SomeEvent(this, args)" around our codebase, we can replace it with a single line. – Judah Himango Oct 29 '08 at 19:22
Or, you could just create a 'dummy handler' for your event, to ensure it's never null. – Joel Coehoorn Oct 29 '08 at 19:23
Joel - what are the performance implications of dummy handlers? I haven't done the proofing on it but I'm willing to bet that a conditional check is less expensive than a delegate invocation. – Erik Oct 29 '08 at 19:28
Interesting suggestion about initializing them to an empty delegate. Seems like that would create some overhead in terms of both generated code and runtime memory. – Judah Himango Oct 29 '08 at 19:36
show 3 more comments

6 Answers

vote up 16 vote down check

Not evil. I wish events worked this way by default. Can someone explain why an event with no subscribers is null?

link|flag
1  
I agree events without subscribers shouldn't be null. It seems rather foolish that an event with no subscribers is null - surely they could have initialized it with some reusable class with an empty subscription list. Alas, it's too late to change now. – Judah Himango Oct 29 '08 at 19:26
vote up 2 vote down

Don't forget to use [MethodImpl(MethodImplOptions.NoInlining)], else its possible that it isn't thread safe.

(Read that somewhere long ago, remembered it, googled and found http://blog.quantumbitdesigns.com/tag/events/ )

link|flag
vote up 3 vote down

Coming from a java background this has always seemed odd to me. I think that no one listening to an event is perfectly valid. Especially when listeners are added and removed dynamically.

To me this seems one of C#'s gottchas that causes bugs when people don't know / forget to check for null every time.

Hiding this implementation detail seems a good plan as it's not helping readability to check for nulls every single time. I'm sure the MSFTs will say there's a performance gain in not constucting the event if no one is listening, but imho it is vastly outweighed by the pointless null pointer exceptions / reduction in readability in most business code.

I'd also add these two methods to the class:

    public static void Raise(this EventHandler handler, object sender)
    {
        Raise(handler, sender, EventArgs.Empty);
    }

    public static void Raise<TA>(this EventHandler<TA> handler, object sender, TA args)
        where TA : EventArgs
    {
        if (handler != null)
        {
            handler(sender, args);
        }
    }
link|flag
vote up 0 vote down

I wouldn't say it's evil, but I'm interested in how your extension method fits in with the

protected virtual OnSomeEvent(EventArgs e){ }

pattern and how it handles extensibility via inheritance. Does it presume all subclasses will handle the event instead of override a method?

link|flag
Shouldn't affect this. Inside the OnSomeEvent, you'd use the extension method instead of the normal "check for null, raise if not null" limbo dance. – Judah Himango Oct 29 '08 at 19:46
vote up 5 vote down

You can always declare your events like this (not that i recommend it):

public event EventHandler<EventArgs> OnClicked = delegate { };

That way they have something assigned to them when you call them, so they don't throw a null pointer exception.

You can probably get rid of the delegate keyword in C# 3.0...

link|flag
I recommend it. It sticks to the good citizenship principles. – Rinat Abdullin Dec 13 '08 at 17:07
vote up 4 vote down

Why would it be evil?

Its purpose is clear: It raises the MyButtonClicked event.

It does add a function call overhead, but in .NET it will either be optimized away or pretty fast anyway.

It is slightly trivial, but it fixes my biggest complaint with C#.

On the whole, I think it's a fantastic idea, and will probably steal it.

link|flag
It would be evil only because it won't throw an exception if MyButtonClick is null. E.g. this is valid: EventHandler click = null; click.Raise(...); – Judah Himango Oct 29 '08 at 19:32
+1 for stealing good ideas. – Michael Burr Oct 29 '08 at 19:33
Well you can't set the EventHandler null. The only way it can be null is if no one is listening to the event, and I don't think raising an event that no one is listening to is an exception-worthy event. – David Oct 29 '08 at 19:56
Right, I just mean, if there are no subscribers to the event, it would be null. Then, calling what looks like a instance method on a potentially null object might appear to be an evil use of extension methods. – Judah Himango Nov 3 '08 at 18:45

Your Answer

Get an OpenID
or

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