ABT.BinaryOpSupportingIntegralOperands.BinaryOpSupportingIntegralOperands C# (CSharp) 메소드

BinaryOpSupportingIntegralOperands() 보호된 메소드

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