Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What?s a multicast delegate?

Answers were Sorted based on User's Feedback



What?s a multicast delegate?..

Answer / daniel

It?s a delegate that points to and eventually fires off
several methods.

Is This Answer Correct ?    15 Yes 1 No

What?s a multicast delegate?..

Answer / prakash

Multicast delegate has one or more methods references. Its
return type is always void.

Is This Answer Correct ?    15 Yes 4 No

What?s a multicast delegate?..

Answer / karna

Multycast delegate is a delegate which can hold the more
than one method references.And also define as that a
delegate witch returns nothing(void)say it as multycast
delegate.

Is This Answer Correct ?    5 Yes 1 No

What?s a multicast delegate?..

Answer / pushparaj pentakota

Multycast delegate is a delegate which can hold multiple
function pointers and also it's return type is void.

Is This Answer Correct ?    0 Yes 0 No

What?s a multicast delegate?..

Answer / taran saran

Delegates which are capable of pointing to multiple function
of the same signature.The system.Delegate type maintain a
linked list that is used to hold the references to the
functions to be invoked by the delegate. This link list is
called as the invocation list.The delegate class provides a
shared member function calles combine() , which add a
reference of specified function to the invocation list

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Sharp Interview Questions

What is autopostback in c#?

0 Answers  


HOW to Develope the CRUD(create,read,update,delete) FORM IN WINDOWS form by using c# only

0 Answers   Petranics Solutions,


Could you explain the difference between func vs action vs predicate?

0 Answers  


What are jump statements in c#?

0 Answers  


Is c# front end or back end?

0 Answers  


What is a .aspx file?

0 Answers  


Explain clr in brief.

0 Answers  


Why singleton class is sealed in c#?

0 Answers  


Using system; class main { public static void Main() { int a = 1; for (int i = 0; i < 10; i++) { int j = a * 5; Console.WriteLine(a + "*5=" + j); a++; } Console.ReadLine(); } }

1 Answers  


What is use of private class in c#?

0 Answers  


what is the need of using interface in program ex:if we have a program like this interface1() { void method1(); void method(); } class a1 : interface1 { a1 b = new b(); b.method1(); b.method2(); } so without using interface also we can achieve this then wat is the need to use the interface? plz give me the answer

1 Answers  


Is c# int immutable?

0 Answers  


Categories