Alexandria.Compression.BitStream.FetchLSB C# (CSharp) Method

FetchLSB() public method

Fill the bit buffer in LSB order.
public FetchLSB ( ) : void
return void
        public void FetchLSB()
        {
            while (BitCount <= 24) {
                Bits |= (uint)(Stream.ReadByte() & 0xFF) << BitCount;
                BitCount += 8;
            }
        }