Boo.Lang.Compiler.Steps.ProcessMethodBodies.CheckExactArgsParameters C# (CSharp) Метод

CheckExactArgsParameters() защищенный Метод

protected CheckExactArgsParameters ( ICallableType method, Boo.Lang.Compiler.Ast.ExpressionCollection args, bool reportErrors ) : bool
method ICallableType
args Boo.Lang.Compiler.Ast.ExpressionCollection
reportErrors bool
Результат bool
        protected bool CheckExactArgsParameters(ICallableType method, ExpressionCollection args, bool reportErrors)
        {
            if (method.GetSignature().Parameters.Length != args.Count) return false;
            return AssertParameterTypes(method, args, args.Count, reportErrors);
        }
ProcessMethodBodies