What is Delegation?

A delegate acts like a strongly type function pointer. Delegates can invoke the methods that they reference without making explicit calls to those methods.
Delegate is an entity that is entrusted with the task of representation, assign or passing on information. In code sense, it means a Delegate is entrusted with a Method to report information back to it when a certain task (which the Method expects) is accomplished outside the Method's class.

Showing Answers 1 - 2 of 2 Answers

sanker

  • Nov 10th, 2005
 

Delegate are a referenced type that refers to shared method of type or a to an instance method of an object

  Was this answer useful?  Yes

samiksc

  • Jan 16th, 2006
 

A delegate is a type-safe function pointer. Delegates are used in event handling.

Delegates are declared using the following syntax:

public delegate <return type> MyDelegate(<parameter list>);

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions