Creates a Delegate of the specified Type.
Creates a Delegate of the specified type to represent the specified static method.
[Visual Basic] Overloads Public Shared Function CreateDelegate(Type, MethodInfo) As Delegate
[C#] public static Delegate CreateDelegate(Type, MethodInfo);
[C++] public: static Delegate* CreateDelegate(Type*, MethodInfo);
[JScript] public static function CreateDelegate(Type, MethodInfo) : Delegate;
Creates a Delegate of the specified type to represent the specified instance method of the specified Type instance.
[Visual Basic] Overloads Public Shared Function CreateDelegate(Type, Type, String) As Delegate
[C#] public static Delegate CreateDelegate(Type, Type, String);
[C++] public: static Delegate* CreateDelegate(Type*, Type*, String);
[JScript] public static function CreateDelegate(Type, Type, String) : Delegate;
Creates a Delegate of the specified type to represent the specified instance method of the specified Object instance.
[Visual Basic] Overloads Public Shared Function CreateDelegate(Type, Object, String) As Delegate
[C#] public static Delegate CreateDelegate(Type, Object, String);
[C++] public: static Delegate* CreateDelegate(Type*, Object, String);
[JScript] public static function CreateDelegate(Type, Object, String) : Delegate;