Basic Dot Net Question:
Download Questions PDF

What is Delegation in .NET?

Answer:

A delegate acts like a strongly type function pointer. Delegates can invoke the methods that they reference without making explicit calls to those methods.
Delegate is an entity that is entrusted with the task of representation, assign or passing on information. In code sense, it means a Delegate is entrusted with a Method to report information back to it when a certain task (which the Method expects) is accomplished outside the Method's class.

Download Dot Net Interview Questions And Answers PDF

Previous QuestionNext Question
How can you automatically generate interface for the remotable object in .NET with Microsoft tools? What is "Microsoft Intermediate Language" (MSIL)?