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: 569
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