public static void AddInt(byte[] array, ref int bitPos, CompressedByte compressed) { var value = compressed.Value; int bitsCount = compressed.Length; AddInt(array, ref bitPos, compressed.Value, compressed.Length); }
/*#Ignore*/ public static void AddIntReversed(byte[] array, ref int bitPos, CompressedByte compressed) { AddInt(array, ref bitPos, new CompressedByte { Value = ReverseBits(compressed.Value, compressed.Length), Length = compressed.Length }); }
public CompressedByte(CompressedByte CompressByte) { Value = CompressByte.Value; Length = CompressByte.Length; }