vote up 7 vote down star
1

Can somebody explain why the .Net framework team decided that a delegate without subscribers should be null instead of an object with an empty InvocationList? I'd like to know the rationale that led to this decision.

void DoSomething()
{
    EventHandler handler = SomeEvent;
    if(handler != null)                   //why is this null-check necessary?
    {
        handler(this, EventArgs.Empty);
    }
}

Thanks

flag

3 Answers

vote up 7 vote down check

On the CLR level, delegate fields and event fields are regular field.

Just like string MyField defaults to null and not "", so too Action MyField defaults to null and not an empty Action instance.

link|flag
vote up 1 vote down

See Jon Skeet's answer here for a nice discussion of this. It is even possible to get around having to check against null in C# 2.0.

link|flag
vote up 1 vote down

I agree that this can be cumbersome and I personally feel that this was a mistake. I cannot think of any reason why this has to be this way.

link|flag

Your Answer

Get an OpenID
or

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