Interview Questions

What is Delegate and what is it used for ?

.NET Interview Questions and Answers


(Continued from previous question...)

What is Delegate and what is it used for ?

Delegate is kinda like a pointer to a function in C++ or like an event handler in Java
You can use it to “multicast” which means running multiple functions in different instances of object already created.
This is useful when you want your objects to “register” to an event raised by another object.
The way it works is the object you are registered to listen to recieves the delegate of the function it is supposed to run in your object, the delegate is then run from it. (if you switch the word delegate for pointer, this would be much simpler)

(Continued on next question...)

Other Interview Questions