1.

What do you mean by Delegates and explain different types of Delegates?

Answer»

A Delegate in C# is a variable, which HOLDS a REFERENCE to a specific METHOD. This also makes a delegate a function POINTER of a reference type. All the Delegates are derived from the SYSTEM. Delegate namespace.

Delegates are of three types -
  • Single Delegate
  • Multicast Delegate
  • Generic Delegate


Discussion

No Comment Found