System.Linq.Expressions.MethodBinaryExpression.MethodBinaryExpression C# (CSharp) Method

MethodBinaryExpression() private method

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
return System.Collections.Generic
        internal MethodBinaryExpression(ExpressionType nodeType, Expression left, Expression right, Type type, MethodInfo method)
            : base(nodeType, left, right, type)
        {
            _method = method;
        }