Tip
To preserve the changes of a mutable value type embed it into a variable of Object type and pass it to the instance parameter of this method.
public static Object? InvokeMethod(
Object? instance,
MethodInfo method,
params Object?[]? parameters
)
Public Shared Function InvokeMethod (
instance As Object,
method As MethodInfo,
ParamArray parameters As Object()
) As Object
public:
static Object^ InvokeMethod(
Object^ instance,
MethodInfo^ method,
... array<Object^>^ parameters
)
static member InvokeMethod :
instance : Object *
method : MethodInfo *
parameters : Object[] -> Object
For invoking the method this method uses the DynamicDelegate reflection way.