Ejemplo n.º 1
0
 public BitReader(bool[] input, int bitCount)
 {
     Bits    = new FBitArray(input);
     LastBit = bitCount;
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the BitReader class based on the specified bool[].
        /// </summary>
        /// <param name="input">The input bool[].</param>

        public BitReader(bool[] input)
        {
            Bits    = new FBitArray(input);
            LastBit = Bits.Length;
        }