MulticastDelegate

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the use of the MulticastDelegate class?
What's the difference between the MulticastDelegate and the Delegate classes?
Thanks.
 
What is the use of the MulticastDelegate class?

A Multicast Delegate is a Delegate that can contain multiple methods in its
invocation list. That is, you can assign multiple methods to it by using +=
to assign them. It is the base class for all classes that derive from
Delegate and that are available to developers.
What's the difference between the MulticastDelegate and the Delegate
classes?

The Delegate class is the base class for the Multicast Delegate class.

It is important to note that a developer cannot derive (inherit) from either
of these classes. All delegate classes available for use by developers
derive from Multicast delegate. That is, all delegate classes available for
developers to use are multicast delegates.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.
 
Back
Top