Remotion.Linq.SqlBackend.SqlPreparation.MethodCallTransformers.MethodCallTransformerUtility.GetInstanceMethod C# (CSharp) Method

GetInstanceMethod() public static method

public static GetInstanceMethod ( Type type, string methodName ) : MethodInfo
type System.Type
methodName string
return System.Reflection.MethodInfo
    public static MethodInfo GetInstanceMethod (Type type, string methodName, params Type[] argumentTypes)
    {
      ArgumentUtility.CheckNotNull ("type", type);
      ArgumentUtility.CheckNotNull ("methodName", methodName);

      return type.GetMethod (methodName, argumentTypes);
    }