In yesterday’s
post We learn about Delegates and how we can use delegates in C#. In today’s blog post we are going to learn about Multicast delegates.
What is Multicast Delegates?
As we all know we can assign methods as object to delegate and later on we can call that method with the help delegates. We can also assign more then methods to delegates that is called Multicast delegates. It’s provide functionality to execute more then method at a time. It’s maintain delegates as invocation list (linked list).