What is type safe object in DotNet that but can be pointed to more than one function at a time and can be invoked explicitly?

 Posted by Nagasundar_Tn on 11/21/2012 | Category: C# Interview questions | Views: 5709 | Points: 40
Select from following answers:
  1. Delegates
  2. Events
  3. Multicast Delegates
  4. Objects
  5. All Above

Show Correct Answer


Asked In: Telephone interview | Alert Moderator 

Comments or Responses

Posted by: Chiragkanzariya on: 11/22/2012 | Points: 10
A MulticastDelegate has a linked list of delegates, called an invocation list, consisting of one or more elements. When
a multicast delegate is invoked, the delegates in the invocation list are called synchronously in the order in which
they appear. If an error occurs during execution of the list then an exception is thrown

Right Answer is : Multicast Delegates

check my blog http://www.chiragkanzariya.blogspot.in/
Posted by: Chvrsri on: 11/22/2012 | Points: 10
Hi Chiragkanzariya,

Appreciate your efforts this place is provided only to send responses for the added post. Incase if you wish to send us different interview questions you can post directly by going to interview section and click on Submi Contents buttton. Thank you for your co-operation !

Moderator Interview Questions

Login to post response