Using ...anonymous methods... you can create empty delegates since C# 2.0....public event EventHandler SomeEvent = delegate {};
public event Action OtherEvent = delegate {};
...This is e.g. ...useful to prevent having to do the null check when invoking ev...