How can I make my own event in C#?
Thanks
|
Here's an example of creating and using an event with C#
|
|||
|
|
|
I have a full discussion of events and delegates in my events article. For the simplest kind of event, you can just declare a public event and the compiler will create both an event and a field to keep track of subscribers:
If you need more complicated subscription/unsubscription logic, you can do that explicitly:
|
|||||||
|
|
You can declare an event with the following code:
A custom delegate type instead of EventHandler can be used if needed. You can find detailed information/tutorials on the use of events in .net here |
||||
|
|