System.Linq.Expressions.Expression.ValidateArgumentTypes C# (CSharp) Method

ValidateArgumentTypes() private static method

private static ValidateArgumentTypes ( MethodBase method, ExpressionType nodeKind, ReadOnlyCollection &arguments, string methodParamName ) : void
method MethodBase
nodeKind ExpressionType
arguments ReadOnlyCollection
methodParamName string
return void
        private static void ValidateArgumentTypes(MethodBase method, ExpressionType nodeKind, ref ReadOnlyCollection<Expression> arguments, string methodParamName)
        {
            ExpressionUtils.ValidateArgumentTypes(method, nodeKind, ref arguments, methodParamName);
        }
Expression