23.64.1.Events |
|
- Event handlers are represented by delegates.
- Events are members of a class
- Events are declared using the event keyword.
|
Its most commonly used form is shown here: |
event event-delegate object;
|
|
- event-delegate is the name of the delegate used to support the event.
- object is the name of the specific event object being created.
|