If you like to create custom delegates you would use the delegate keyword in lowercase.
What can you do with the actual Delegate Class? What is this good for? Don't understand the exact difference.
Thanks Kave
|
|
|
From http://msdn.microsoft.com/en-us/library/system.delegate.aspx:
|
|||||||
|
|
The delegate keyword is for the compiler to do some magic for you. When you declare a new delegate with a custom signature,
So now when you call The Delegate base class provides some functionality such as
The C# compiler forbids you from deriving from Delegate explcitly in your code.. you have to use the delegate keyword. |
|||
|
Another neat thing you can do with
|
|||||
|
|
The advantage of the Delegate class is that it is the base class for all delegate types in .Net. Having a method which takes an instance of this class allows you to operate generically over all manner of delegates. This is the reason operations like ISynchronizedInvoke.Invoke use this as a parameter. |
|||||
|
|
One of the things the
|
|||
|
|
|
From an implementation perspective, the Delegate class defines the fields used to represent a delegate's function pointer and the MultiCastDelegate class provides the base line functionality used by events. Also, as other people mentioned, Delegate provides the "DynamicInvoke" method which allows you to invoke any delegate. |
|||
|
|