vote up 4 vote down star

There is a question already answered which is http://stackoverflow.com/questions/32034/in-c-isnt-the-observer-pattern-already-implemented-using-events

It asks if the observer pattern is already implemented in c# using events.

While I get the events and observer pattern, isn't the observer pattern really just delegates and events is a further implementation?

flag

73% accept rate
Could you elaborate on your question? You seem to be aware of the other question and its answer, so you seem to be asking something in addition to that, but it is unclear to me what it is. – Mark Seemann Jun 21 at 6:57

1 Answer

vote up 9 vote down check

You are correct. An event is simply a delegate with some slightly different functionality. All of the observer pattern can be implemented with delegates without ever touching the event keyword.

You may be interested then, in what the "event" keyword actually brings to the table.

  • Events can be part of an interface, whereas regular delegate field cannot
  • Events cannot be invoked by outside classes, but regular delegates can
  • Events have additional accessors (add and remove) that you can override and provide custom functionality for

Edit: Here's a great writeup with IL code comparison between events and delegates. (Hint: it's pretty much the same).

link|flag
@womp thanks for insightful article – TheVillageIdiot Jun 21 at 7:42

Your Answer

Get an OpenID
or

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