UPDATE
As of C# 6, the answer to this question is:
SomeEvent?.Invoke(this, e);
I frequently hear/read the fo
With C# 6 and above, code could be simplified using new ?. operator as in:
?.
TheEvent?.Invoke(this, EventArgs.Empty);
Here is the MSDN documentation.