Skip to main content

Posts

Showing posts with the label What is delegate?

What are ASP.NET Delegates, Types and Examples?

Delegate, Multicast Delegate and Generic Delegate Delegate Multicast Delegate Generic Delegate Multiple Examples and Live Results Single Delegates Examples Mapped Delegate Static and Instance Methods Multicast Delegate Examples What are Generic Delegates, Types and Examples What is “ Delegate ”?  What are different “ Types ” of Delegate?  What is “ Multicast Delegate ”? What is “ Generic Delegate ”? A  Delegate  is an object which holds the references to a method within delegate object. A  Delegate  is a type-safe object. A  Delegate  is invoking to methods in  asynchronously  manner.  A  Delegate  encapsulates a static method or  instance  methods.  A  Delegate  can be with parameters or without parameters.  Delegate’s benefits,   1) Improve the performance of application.    2) Encapsulate to methods call from caller.    ...