what are delegates? How you used then in your project?
Answer Posted / kiran kumar reddy
A delegate can be defined as a type safe function pointer.
It encapsulates the memory address of a function in your
code. Whenever you create or use an event in code, you are
using a delegate. When the event is thrown, the framework
examines the delegate behind the event and then calls the
function that the delegate points to. delegates can be
combined to form groups of functions that can be called
together.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is assembly version series sequence?
What are the 3 logical operators?
What is wcf c#?
Which is the base class in c#?
How can I make sure my c# classes will interoperate with other .net languages?
What is serialization in dot net?
What are escape sequences explain with example?
How do you type a null character?
Can you inherit from a sealed class?
Explain the role of the datareader class in ado.net connections?
Explain the role of Garbage collector and its generations?
I was trying to use an out int parameter in one of my functions. How should I declare the variable that I am passing to it?
Can you instantiate an abstract class c#?
How to declares a two-dimensional array in C#?
What is pure abstract class in c#?