public override BitArrayBase Or(BitArrayBase other)
        {
            ShortBitArray shortOther  = (ShortBitArray)other;
            ShortBitArray newBitArray = new ShortBitArray();

            newBitArray._bitArray = this._bitArray | shortOther._bitArray;

            return(newBitArray);
        }
 public abstract BitArrayBase Or(BitArrayBase other);
 public abstract BitArrayBase And(BitArrayBase other);