ABT.BinaryOpSupportingOnlyIntegralOperands.BinaryOpSupportingOnlyIntegralOperands C# (CSharp) Метод

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

protected BinaryOpSupportingOnlyIntegralOperands ( Expr left, Expr right ) : System
left Expr
right Expr
Результат System
        protected BinaryOpSupportingOnlyIntegralOperands(Expr left, Expr right)
            : base(left, right) {
            if (!(left.Type is LongType || left.Type is ULongType)) {
                throw new InvalidOperationException("Only support long or ulong.");
            }
            this.Type = left.Type.GetQualifiedType(true, false);
        }
BinaryOpSupportingOnlyIntegralOperands