Delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which method will be invoked. Delegate is type-safe object which can point to method or multiple methods (Multicasting) of application. To define delegate we use keyword ‘Delegate’.
Let’s see an example on ‘Delegate and Event in C#’.
Example:
namespace delegateAndEvent |
Note: While defining delegate we need to keep in mind that return type, arguments should be same as the return type and arguments of methods to which it is going to point to.
Leave Comment
5 Comments