System.Linq.Expressions.MethodBinaryExpression.MethodBinaryExpression C# (CSharp) Метод

MethodBinaryExpression() приватный Метод

private MethodBinaryExpression ( ExpressionType nodeType, Expression left, Expression right, Type type, MethodInfo method ) : System.Collections.Generic
nodeType ExpressionType
left Expression
right Expression
type System.Type
method System.Reflection.MethodInfo
Результат System.Collections.Generic
        internal MethodBinaryExpression(ExpressionType nodeType, Expression left, Expression right, Type type, MethodInfo method)
            : base(nodeType, left, right, type)
        {
            _method = method;
        }