vote up 0 vote down star

[Closing as duplicate of "Why must someone be subscribed for an event to occur". Also related: "How do C# events work behind the scenes"]

In most examples of event handling I found online, the examples goes some thing like:

public delegate void MyDelegate(int i);
public event MyDelegate OnFire;

public void ChangeValue(int x)
{
 if (OnFire != null)
 {
  OnFire(x);
 }
}

Why do we need to check (Onfire != null) ?
Isn't the event always != null ?

flag

closed as exact duplicate by Gishu Oct 22 '08 at 10:22

1 Answer

vote up 4 vote down check

No. The event will be null if nobody has attached any handlers to it.

link|flag

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