コード例 #1
0
ファイル: BiserEncoder.cs プロジェクト: valmac/DBreeze
 public Encoder Add(short value)
 {
     GetVarintBytes((ulong)Biser.EncodeZigZag(value, 16));
     return(this);
 }
コード例 #2
0
ファイル: BiserEncoder.cs プロジェクト: valmac/DBreeze
 public Encoder Add(long value)
 {
     GetVarintBytes((ulong)Biser.EncodeZigZag(value, 64));
     return(this);
 }