In which circumstances you used delegates?
Answers were Sorted based on User's Feedback
Answer / harika
Mostly we r going to use Delegates in the "Threading"
concept and in "Event Handling"
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / renu
A delegate in C# is similar to a function pointer in C or
C++. Using a delegate allows the programmer to encapsulate
a reference to a method inside a delegate object. The
delegate object can then be passed to code which can call
the referenced method, without having to know at compile
time which method will be invoked.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / versha
Delegate is used when we want to give reference to any
function
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / anirudh menon
A delegate is used when you want to dynamically change the
refrence of a method in a class during run-time.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / riju
Delegates are mostly used when events comes in picture.If
you want to encapsulate /hide your methords then you can
use delgates...Its just like function pointers
| Is This Answer Correct ? | 1 Yes | 0 No |
Why to use '{resource}.axd/{*pathInfo}' in routing in ASP.Net MVC?
What are the levels at which filters can be applied in an asp.net mvc application?
can we call the garbage collector to run explicicitly?
Where is the new functionality in the .net framework 3.0 (such as wcf, wf, wpf, and cardspace) installed to? Is that different from where the .net framework 2.0 is installed to?
What are advantages of Dependency Injection (DI) in ASP.Net MVC?
Is it possible to cancel filter execution?
How to Insert a TextBox value in to Sql database using C#.Net coding
What's the difference between const and readonly ?
unit test done by tetser on development team?
Difference between manifest , metadata?
3 Answers Soma Technology, TCS,
Explain Model, view and Controllers in Asp.Net MVC?
What is the CLS