Click here to Skip to main content
15,887,326 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Why Microsoft introduce Delegate and Anonymous Methods?

Is it(Delegate) implementation of any other thing in c#?

How delegates are used in real time?
Posted

1 solution

You did not read the documentation, did you?

From "delegate (C# Reference)" at MSDN[^]:
A delegate is a reference type that can be used to encapsulate a named or an anonymous method. Delegates are similar to function pointers in C++; however, delegates are type-safe and secure. For applications of delegates, see Delegates and Generic Delegates.

In the same way you may find pretty informative the MSDN documentation on "Anonymous Methods"[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900