[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 ?
