System.TypeExtensionMethods.GetMethod C# (CSharp) Method

GetMethod() public static method

public static GetMethod ( this type, string name, Type parameters ) : MethodInfo
type this
name string
parameters Type
return System.Reflection.MethodInfo
        public static MethodInfo GetMethod(this Type type, string name, Type[] parameters)
        {
            return type.GetRuntimeMethod(name, parameters);
        }

Same methods

TypeExtensionMethods::GetMethod ( this type, string name ) : MethodInfo