What?s a multicast delegate?
Answers were Sorted based on User's Feedback
Answer / t.prabu
Multicast delegate is a delegate which stores the address of
multiple mothods and also used for event handling
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
It?s a delegate that points to and eventually fires off
several methods.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / guest
multicasting is that you can combine several handler
methods in a list so they are all bound to a single
delegate object. When Invoke is called on the delegate
object, the MulticastDelegate class provides the code to
execute every handler method in the list.
Is This Answer Correct ? | 2 Yes | 1 No |
Is list immutable in c#?
How do you type a null character?
How to declare a property in a class?
What Is The Smallest Unit Of Execution In .net?
What is the difference between these statements obj=null and obj.dispose()
What does dbml stand for?
What is unrecognized escape sequence in c#?
Wht executescaler method is used?
What is the difference between string and string in c#?
What is overloading with example?
Define multicast delegate in c#?
What is string interpolation in c#?