What is a delegate, why should you use it and how do you call it ?



What is a delegate, why should you use it and how do you call it ?..

Answer / ajay vikram

A delegate is a reference type that refers to a Shared method of a type or to an instance method of an object. Delegate is like a function pointer in C and C++. Pointers are used to store the address of a thing. Delegate lets some other code call your function without needing to know where your function is actually located. All events in .NET actually use delegates in the background to wire up events. Events are really just a modified form of a delegate.
It should give you an idea of some different areas in which delegates may be appropriate:
• They enable callback functionality in multi-tier applications as demonstrated in the examples above. <o:p></o:p>
• The CacheItemRemoveCallback delegate can be used in ASP.NET to keep cached information up to date. When the cached information is removed for any reason, the associated callback is exercised and could contain a reload of the cached information. <o:p></o:p>
• Use delegates to facilitate asynchronous processing for methods that do not offer asynchronous behavior.
• Events use delegates so clients can give the application events to call when the event is fired. Exposing custom events within your applications requires the use of delegates.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What does typeof return c#?

0 Answers  


What is an assembly qualified name

0 Answers  


1. Describe page life cycle?

0 Answers   Mphasis, Steria,


List the fundamental oop concepts?

0 Answers  


What is public or shared assemblies ?

0 Answers  






What is difference between write and writeline in c#?

0 Answers  


What is a view? What is the use of it?

0 Answers   Accenture,


Why do we need delegates?

0 Answers  


How do I trim a space in c#?

0 Answers  


Can multiple catch blocks be executed?

4 Answers   Visual Soft,


Does hashset allow duplicates c#?

0 Answers  


Differentiate between copy and default constructor.

0 Answers   TCS,


Categories