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