What?s a multicast delegate?
Answers were Sorted based on User's Feedback
Answer / daniel
It?s a delegate that points to and eventually fires off
several methods.
Is This Answer Correct ? | 15 Yes | 1 No |
Answer / prakash
Multicast delegate has one or more methods references. Its
return type is always void.
Is This Answer Correct ? | 15 Yes | 4 No |
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 |
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 |
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 |
What is thread and explain states of a thread in c#?
Is c# lazy thread safe?
What are mutable and immutable types in c#?
What is selector c#?
What is the difference between array.find method and arraylist.find method?
How can you sort the elements of the array in descending order?
What is assembly and dll in c#?
Hi to all..I have to create an intranet application on C#.NET windows Application so please please let can you people help me as iam new in .NET and if u have any samples or website address from where i can get sample please let know.
What does the keyword virtual mean in the method definition?
3 Answers Ipog Software, Satyam, Visual Soft,
Why abstract class is not instantiated in c#?
How more than one version of an assembly can keep in same place?
What is a reference type c#?