what is a delegate? what it is used for?

Answers were Sorted based on User's Feedback



what is a delegate? what it is used for?..

Answer / bijeshs

Delegates are reference types which allow indirect calls to
methods .some single delegates can reference multiple
methods

Is This Answer Correct ?    24 Yes 5 No

what is a delegate? what it is used for?..

Answer / ranjith

Delegate is nothing but a Function pointer,which stores the
address of a method.
These of two types
1)simple delegate:which stores the address of the method.
2)multi cast delegate: which stored the address of multiple
methods.

Generally Delegates are used for EVENT HANDLING and GENERIC
ROUTINES

Is This Answer Correct ?    22 Yes 3 No

what is a delegate? what it is used for?..

Answer / divya

Delegates are similar to function pointers in C C++,
Delegate objects hold references to functions.

Delgates are mainly used in event handling

Is This Answer Correct ?    16 Yes 1 No

what is a delegate? what it is used for?..

Answer / anu1983_mca@yahoo.co.in

Delegate defines a reference type that can be used to
encapsulate a method.Delegate is a function pointer in c++.

I. Delegate is a Type-Safe and secure

Is This Answer Correct ?    12 Yes 2 No

what is a delegate? what it is used for?..

Answer / asin

Delegate is a Function Pointer.It invokes methods.
References to methods are wrapped in delegates.

Is This Answer Correct ?    15 Yes 9 No

what is a delegate? what it is used for?..

Answer / divyesh

Nobody has written the actual scenario where the delegates
will be used instead of events!

Is This Answer Correct ?    6 Yes 1 No

what is a delegate? what it is used for?..

Answer / subhransu

A delegate is a type-safe object that can point to another method (or possibly multiple methods) .

Is This Answer Correct ?    5 Yes 2 No

what is a delegate? what it is used for?..

Answer / d.monisha caroline

Delegate is a reference type variable which holds reference
to a method,,,delegates are primarily used in c# programming
for implementing events and callbacks

Is This Answer Correct ?    4 Yes 1 No

what is a delegate? what it is used for?..

Answer / cool

Delegate is a strong type function pointer and it passes the
method signature for the class and class that has this
signature can use this delegates.
This is similar to Pointers in C and C++.
If we use this delegates for single method then this is
single case and if the method declared to more than one
method then this is called as multicast delegate object

Is This Answer Correct ?    2 Yes 0 No

what is a delegate? what it is used for?..

Answer / subbu

Delegates are a type that references method. Normally when
we calling a method we will pass some data to that method
as input parameter. But in some scenario we might need to
pass method as input parameter to other method in such case
we can use delegate.
Delegate wraps any method which matches its signature,
calling a delegate result in calling a method so this gives
the ability to call the method programmatically based on
our business needs.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is difference between ienumerable and enumerable in c#?

0 Answers  


how to implement a web service in .net

0 Answers  


Difference between direct type casting and using "as" keyword?

1 Answers   TCS,


What is difference between private and static constructor?

0 Answers  


What is the difference between returning iqueryable vs ienumerable?

0 Answers  






Why do we use virtual methods in c#?

0 Answers  


What is the difference between abstract and virtual?

0 Answers  


Can a dictionary have the same key?

0 Answers  


Can abstract class be sealed in c#?

0 Answers  


What is deferred execution in c#?

0 Answers  


What is difference between event and delegate in c#?

0 Answers  


What does break do in loop?

0 Answers  


Categories