In this tutorial, we are going over C# delegates and events. We will go over how you can extend your application using delegates and when to use interfaces or delegates. We will also go over events and how delegates are the plumbing of events. We will create a real-world chat application reviewing delegates and events. Finally, we will extend our Tic Tac Toe application using events when the user closes the game.
Some helpful resources
https://docs.microsoft.com/en-us/dotn...
Another example:
https://docs.microsoft.com/en-us/dotn...
The following link shows us all the delegates that are used in .NET
https://docs.microsoft.com/en-us/dotn...
In case you are bored you can read the specification for delegates :)
https://docs.microsoft.com/en-us/dotn...
Finally, here is the code sample used in our tutorials:
https://github.com/MaxAkbar/DelegateT...