Exemplo n.º 1
0
 internal PackBitsRun(short count, byte repeat)
 {
     Count  = count;
     Type   = PackBitsType.Repeat;
     Repeat = repeat;
 }
Exemplo n.º 2
0
 internal PackBitsRun(short count)
 {
     Count  = count;
     Type   = PackBitsType.Literal;
     Repeat = 0;
 }