Is there a way to overload the + = and - = operators event in C #? I want to make an event listener and register it for different events. So something like this:
SomeEvent += new Event(EventMethod);
Then, instead of binding to SomeEvent, it is actually bound to various events:
DifferentEvent += (the listener above); AnotherDiffEvent += (the listener above);
thanks
c # events overloading operator-overloading event-listener
SwDevMan81
source share