up vote 4 down vote favorite
share [g+] share [fb]

I was wondering if anyone could tell me the raw code equivalent to the += operator for adding a method to an event. I am curious to how it it works from a technical standpoint.

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

An event defines a set of methods including "add" and "remove" (in the same way that a property defines "get" and "set"). to this is effectively:

obj.add_SomeEvent(handler);

Internally, the event could do anything; there are 2 common cases:

  • events with a delegate field (including "field-like" events)
  • EventHandlerList implementations

With a delegate, it effectively uses Delegate.Combine:

handler = Delegate.Combine(handler, value);

With an EventHandlerList there is a key object:

Events.AddHandler(EventKey, value);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.