CodeInsiders.SharpQL.BinaryPredicateOperator.BinaryPredicateOperator C# (CSharp) Метод

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

protected BinaryPredicateOperator ( Expression leftOperand, Expression rightOperand ) : System
leftOperand Expression
rightOperand Expression
Результат System
        protected BinaryPredicateOperator(Expression leftOperand, Expression rightOperand)
        {
            if (leftOperand == null) {
                throw new ArgumentNullException("leftOperand");
            }
            if (rightOperand == null) {
                throw new ArgumentNullException("rightOperand");
            }
            this.LeftOperand = leftOperand;
            this.RightOperand = rightOperand;
        }
BinaryPredicateOperator