ABT.BitwiseNot.BitwiseNot C# (CSharp) Method

BitwiseNot() public method

public BitwiseNot ( Expr expr ) : System
expr Expr
return System
        public BitwiseNot(Expr expr)
            : base(expr) {
            if (!(expr.Type is LongType || expr.Type is ULongType)) {
                throw new InvalidOperationException("Invalid operand type.");
            }
        }