Gets the methods with the specified name and
parameterTypes of the
Typetype
regardless if the methods are generic or not.
Namespace: NReflect
Assembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax
public static IEnumerable<MethodInfo> GetMethods( this Type type, string name, params Type[] parameterTypes )
Parameters
- type
- Type:
System.Type
The type to get the methods from.
- name
- Type:
System.String
The name of the methods to get.
- parameterTypes
- Type:
System.Type[]
The parameters of the method.
Return Value
The
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type


See Also