Edit

Share via


MethodInvoker.Create(MethodBase) Method

Definition

Creates a new instance of MethodInvoker.

public:
 static System::Reflection::MethodInvoker ^ Create(System::Reflection::MethodBase ^ method);
public static System.Reflection.MethodInvoker Create (System.Reflection.MethodBase method);
static member Create : System.Reflection.MethodBase -> System.Reflection.MethodInvoker
Public Shared Function Create (method As MethodBase) As MethodInvoker

Parameters

method
MethodBase

The method that will be invoked.

Returns

The new instance.

Exceptions

The method is not a runtime-based method.

Remarks

For performance, the resulting instance should be cached for additional calls.

Applies to