NotInPlace() public method

public NotInPlace ( ) : void
return void
Example #1
0
        public virtual BitSet Not()
        {
            BitSet s = (BitSet)this.Clone();

            s.NotInPlace();
            return(s);
        }