vote up 1 vote down star

What does the event keyword do really?

msdn says it is used to declare an event in a publisher class

// Declare the event.
public event SampleEventHandler SampleEvent;

Would that mean the SampleEvent is any less of a SampleEventHandler if I don't put event in front of it?

Besides the super awesome -= and += operators what do I get out of events/eventhandlers that I wouldn't get from List<MyDelegate>? When should I use one over the other?

flag

58% accept rate

closed as exact duplicate by Jon B, Quintin Robinson, Erik, annakata, CrashCodes Mar 5 at 21:50

2 Answers

vote up 4 vote down check

See this other SO thread for a complete answer.

link|flag
That was not a suggested question when I listed this. Thanks for pointing that out. – CrashCodes Mar 5 at 21:38
vote up 0 vote down

A delegate supports += and -= operations, and so does an event. Also you can call them like methods.

But the difference is that calling an event is private to the class it belongs to, whereas += and -= are public. Also you can't assign to an event using = from outside the class either.

link|flag

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