コード例 #1
0
 internal PackBitsRun(short count, byte repeat)
 {
     Count  = count;
     Type   = PackBitsType.Repeat;
     Repeat = repeat;
 }
コード例 #2
0
 internal PackBitsRun(short count)
 {
     Count  = count;
     Type   = PackBitsType.Literal;
     Repeat = 0;
 }