Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs/csharp/language-reference/keywords/event.md
Just suggestions: An ***event*** is a member that enables notifications to be triggered. Clients can attach executable code for events by supplying ***event handlers***. The `event` keyword declares an ***event***. The event is of a delegate type. While triggering an event all supplied event handlers are invoked. Event handlers are delegate instances added to the event. Event users can add or remove their event handlers to/from an event. Co-authored-by: Bill Wagner <[email protected]>
- Loading branch information