RuntimeReflectionExtensions.GetRuntimeMethod Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an object that represents a specified method.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- type
- Type: System.Type
The type that contains the method.
- name
- Type: System.String
The name of the method.
- parameters
- Type:
System.Type
[]
An array that contains the method's parameters.
Return Value
Type: System.Reflection.MethodInfoAn object that represents the specified method, or null if the method is not found.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter.
Show: