The Main Purpose of Events in C#

Posted by Tarik on Stack Overflow See other posts from Stack Overflow or by Tarik
Published on 2010-04-06T06:24:54Z Indexed on 2010/04/06 6:33 UTC
Read the original article Hit count: 545

Filed under:
|
|

I've been examining one of my c# books and I just saw a sentence about Events in C#:
 The main purpose of events is to prevent subscribers from interfering with each other.

Whatever it means, yeah actually events are working pretty much like delegates.
I've been wondering why I should use events instead of delegates.

So is there any one who can explain the bold part?

Thanks in advance.

© Stack Overflow or respective owner

Related posts about events

Related posts about c#