Delegate Constructor
.NET Framework 1.1
Initializes a new delegate.
Overload List
Initializes a delegate that invokes the specified instance method on the specified class instance.
[Visual Basic] Protected Sub New(Object, String)
[C#] protected Delegate(object, string);
[C++] protected: Delegate(Object*, String*);
[JScript] protected function Delegate(Object, String);
Initializes a delegate that invokes the specified static method from the specified class.
[Visual Basic] Protected Sub New(Type, String)
[C#] protected Delegate(Type, string);
[C++] protected: Delegate(Type*, String*);
[JScript] protected function Delegate(Type, String);