コード例 #1
0
 public int NextChunk(int bits)
 {
     return(wrapped.NextChunk(bits));
 }
コード例 #2
0
 public int NextChunk(int bits) => wrapped.NextChunk(bits);
コード例 #3
0
 private int ReadValue(IBitReader reader)
 {
     return(BlockLengthCodeOffsets[Code] + reader.NextChunk(BlockLengthCodeExtraBits[Code]));
 }