Delegates is referred to as atype safe function pointer in C#. Whichholds the reference of method with a particular argument list and return type. When you want to initiate a delegate in a program you can associated its instance with any method that are matches its signature and return type. You can call or invoke the method through the delegate instance.
You can check these below useful links related to delegates and events
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Delegates is referred to as a type safe function pointer in C#. Which holds the reference of method with a particular argument list and return type. When you want to initiate a delegate in a program you can associated its instance with any method that are matches its signature and return type. You can call or invoke the method through the delegate instance.
You can check these below useful links related to delegates and events
Delegates in C#
Introducing Delegates in C#
Delegates
Delegate and Events