What are delegates?

Showing Answers 1 - 9 of 9 Answers

Anand N

  • Sep 12th, 2005
 

delegates are basically a function pointers

  Was this answer useful?  Yes

Praveen V

  • Sep 23rd, 2005
 

A delegate is a class that can hold a reference to a method. Unlike other classes, a delegate class has a signature, and it can hold references only to methods that match its signature. A delegate is thus equivalent to a type-safe function pointer or a callback.

  Was this answer useful?  Yes

govind

  • Apr 30th, 2007
 

what is the use of delegates , mostly the on line project are used in delegate  so plz reply for delegate information .

  Was this answer useful?  Yes

rahul shah

  • May 6th, 2007
 

In simple terms  - delegates are like refernce or pointers to the methods. A delegate is a reference type that cna be used to encapsulate a method.

  Was this answer useful?  Yes

Manohar

  • Jun 21st, 2007
 

A Delegate is Passing a method as an Argumement to a Existing method to create an Event

  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