I have declared a generic event handler:
public delegate void EventHandler();
to which I have added the extension method 'RaiseEvent':
public static void RaiseEvent(this EventHandler self) {
if (self != null) self.Invoke();
}
when I define the event using the typical syntax:
public event EventHandler TypicalEvent;
then I can call use the extension method without problems:
TypicalEvent.RaiseEvent();
but when I define the event with explicit add/remove syntax:
private EventHandler _explicitEvent;
public event EventHandler ExplicitEvent {
add { _explicitEvent += value; }
remove { _explicitEvent -= value; }
}
then the extension method does not exist on the event defined with explicit add/remove syntax:
ExplicitEvent.RaiseEvent(); //RaiseEvent() does not exist on the event for some reason
and when I hover over to event to see the reason it says:
The event 'ExplicitEvent' can only appear on the left hand side of += or -=
Can someone please explain why an event defined using the typical syntax should be different from an event defined using the explicit add/remove syntax and why extension methods do not work on the latter?
EDIT: I found I can workaround it by using the private event handler directly:
_explicitEvent.RaiseEvent();
but I still don't understand why I cannot use the event directly like the event defined using the typical syntax. Maybe someone can enlighten me.
