ABT.BinaryOpSupportingIntegralOperands.BinaryOpSupportingIntegralOperands C# (CSharp) Method

BinaryOpSupportingIntegralOperands() protected method

protected BinaryOpSupportingIntegralOperands ( Expr left, Expr right ) : System
left Expr
right Expr
return System
        protected BinaryOpSupportingIntegralOperands(Expr left, Expr right)
            : base(left, right) {
            if (!left.Type.EqualType(right.Type)) {
                throw new InvalidOperationException("Operand types mismatch.");
            }
        }
    }