MethodInvoker.Create(MethodBase) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.