vote up 7 vote down star
3

What is the difference between a delegate and an event? Don't both hold references to functions to be executed?

flag

3 Answers

vote up 10 vote down check

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|flag
vote up -1 vote down

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|flag
1  
Not true: msdn.microsoft.com/en-us/library/… – recursive Sep 26 at 20:27
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 at 18:46
vote up 4 vote down

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|flag
Excellent description of Delegates. – Jonathan Sampson Jan 17 at 13:57

Your Answer

Get an OpenID
or

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