Example #1
0
 internal HBuffer Write(ulong u)
 {
     _pos = Varint.PutVarint(_buf, _pos, u);
     return(this);
 }
Example #2
0
 internal HBuffer Write(int i)
 {
     _pos = Varint.PutVarint(_buf, _pos, i);
     return(this);
 }