Possible Duplicate:
Simple Delegate (delegate) vs. Multicast delegates
I was wondering what the difference is between the Delegate
class and the MulticastDelegate
class? Delegates in C# are always Multicast right? Because a delegate can contain multiple pointers to methods.
And I was also wondering how the delegate
keyword is related to the Delegate
class.
Can someone explain this in more detail?