Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


About delegates ?

Answers were Sorted based on User's Feedback



About delegates ?..

Answer / naren

1. Delegates holds reference to a method
2. Delegates are objects which points towards a function
which matches its signature
3. Delegates are reference type used to encapsulate method
with specific signature
4. Delegates are typesafe and secure

//declaring a delegate

delegate void SampleDelegate(string message)

//declaring delegate with same signature

static void SampleDelegateMethod(string message)
{
console.writeline(message);
}

//creating delegate method

SampleDelegate d1 = new SampleDelegateMethod();

//invoking method

d1(message);

Is This Answer Correct ?    10 Yes 1 No

About delegates ?..

Answer / sridevi

Delegates are like function pointer in c++ with type-safe.
They can be used in 2 situations
1. callback methods
2. eventHandler

Is This Answer Correct ?    4 Yes 0 No

About delegates ?..

Answer / ravindra

delegate is a reference type which is used to encapsulate a
method with specific signature.
delegates are 2 types
1.single cast delegate
2.multi caste delegate.
Adv:
1.it will improve the performance of the application.

Is This Answer Correct ?    5 Yes 1 No

About delegates ?..

Answer / payal

Delegate hold reference to another function or method

Is This Answer Correct ?    3 Yes 1 No

About delegates ?..

Answer / amit kumar

delegates holds the reference of the function
then you can call that function through the delegate object

main benifit of delegate is that you can make difference
between class objects
you can assign the different -2 methods to different-2
object of same class

Is This Answer Correct ?    2 Yes 0 No

About delegates ?..

Answer / guest

these are just reference to the methods and delegates are
used at the bottom of events.

Is This Answer Correct ?    1 Yes 0 No

About delegates ?..

Answer / prithviraj p

Delegate is a strongly typed function pointer. A delegate
object encapsulates a reference to a method

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

How to remove themes from certain controls?

2 Answers  


What is state management in .net?

0 Answers  


How to check null values in dataset ?

6 Answers   Digital GlobalSoft,


Define session in asp.net.

0 Answers  


How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.

0 Answers   Siebel,


What are the differnt types of handler in ASP.NET?

0 Answers   Sans Pareil IT Services,


What are the different methods of session maintenance in asp.net?

0 Answers  


What is a master page and what does it do?

0 Answers  


How do you deploy your asp.net application?

0 Answers  


What are Master Pages in ASP.NET?

0 Answers  


Types of optimization and name a few ?

3 Answers   Accenture,


What is the Difference between Web.config and global.asax? Can we write connection String code in global.asax?

10 Answers   Microsystems,


Categories