BattleNet.BitReader.BitReader C# (CSharp) Method

BitReader() public method

public BitReader ( byte bytes ) : System
bytes byte
return System
        public BitReader(byte[] bytes)
        {
            m_bits = new BitArray(bytes);
            m_offset = 0;
        }