I just want to be sure that I understand this ...
An “event” in .net is just a set of delegates, and when a class wants to receive an “Event”, it uses the “+” operator with the method the delegate points to (view of the observer)
So, if an event occurs => some pointer will walk through the collection and will call the method that was defined when the event was registered.
How do I understand this description? Is it possible to somehow see the implementation of the Microsoft.net event object?
source
share