up vote 25 down vote favorite
12
share [g+] share [fb]

What are the differences between delegates and an events? Don't both hold references to functions that can be executed?

link|improve this question

codeproject.com/KB/cs/events.aspx – Meysam Nov 26 '11 at 11:25
feedback

5 Answers

up vote 32 down vote accepted

An Event declaration adds a layer of abstraction and protection on the delegate instance. This protection prevents clients of the delegate from resetting the delegate and its invocation list and only allows adding or removing targets from the invocation list.

link|improve this answer
feedback

In addition to the syntactic and operational properties, there's also a semantical difference.

Delegates are, conceptually, function templates; that is, they express a contract a function must adhere to in order to be considered of the "type" of the delegate.

Events represent ... well, events. They are intended to alert someone when something happens and yes, they adhere to a delegate definition but they're not the same thing.

Even if they were exactly the same thing (syntactically and in the IL code) there will still remain the semantical difference. In general I prefer to have two different names for two different concepts, even if they are implemented in the same way (which doesn't mean I like to have the same code twice).

link|improve this answer
Excellent description of Delegates. – Jonathan Sampson Jan 17 '09 at 13:57
feedback

You can also use events in interface declarations, not so for delegates.

link|improve this answer
Not true. See: bytes.com/topic/c-sharp/answers/… – surfen Nov 4 '11 at 21:04
feedback

An event in .net is a designated combination of an Add method and a Remove method, both of which expect some particular type of delegate. Both C# and vb.net can auto-generate code for the add and remove methods which will define a delegate to hold the event subscriptions, and add/remove the passed in delegagte to/from that subscription delegate. VB.net will also auto-generate code (with the RaiseEvent statement) to invoke the subscription list if and only if it is non-empty; for some reason, C# doesn't generate the latter.

Note that while it is common to manage event subscriptions using a multicast delegate, that is not the only means of doing so. From a public perspective, a would-be event subscriber needs to know how to let an object know it wants to receive events, but it does not need to know what mechanism the publisher will use to raise the events. Note also that while whoever defined the event data structure in .net apparently thought there should be a public means of raising them, neither C# nor vb.net makes use of that feature.

link|improve this answer
feedback

Events: you can have more than one (and they can pile up if you forget to -= them, causing hard to find bugs). Chaining delegates would have to be done manually.

link|improve this answer
2  
Wow it's unfortunate that they call it composing when functional composition is not the same thing (b would be passed a)... but it's cool that delegates can be easily chained. Thanks for the link. – Jared Updike Sep 30 '09 at 18:46
feedback

Your Answer

 
or
required, but never shown

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