
Hello friends, I hope you all are doing great. In today's tutorial, we will have a look at detailed Introduction to Delegates in C#. It's our 21st tutorial in C# series and now we are entering in the complex field. C# concepts, we have studied so far, were quite simple, but now we are slowly moving towards complex topics. Delegates are not that difficult as normally considered, you just need to understand its basic idea and rest is quite simple. So, let's get started with Introduction to Delegates in C#: Introduction to Delegates in C# Delegates in C# , created by using delegate keyword , are used as a type safe pointer, normally pointing towards C# Methods & Events. The signature of the Delegate & the function ( its pointing to ) must be same. As Delegate is a reference type Data type, so ...











