1
Answer

What is Delegates ?

Sanwar Ranwa

Sanwar Ranwa

7y
217
1
what is Delegates and where we use delegate in Real world projects 
Answers (1)
-1
Vipin Mittal

Vipin Mittal

NA 699 3.7k 7y
A delegate is a type that represents references to methods with a particular parameter list and return type. When you instantiate a delegate, you can associate its instance with any method with a compatible signature and return type. You can invoke (or call) the method through the delegate instance.
 
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/delegates/
Accepted