Example #1
0
 public Encoder Add(short value)
 {
     GetVarintBytes((ulong)Biser.EncodeZigZag(value, 16));
     return(this);
 }
Example #2
0
 public Encoder Add(long value)
 {
     GetVarintBytes((ulong)Biser.EncodeZigZag(value, 64));
     return(this);
 }