Esempio n. 1
0
 /// <inheritdoc/>
 public override IoBuffer PutInt64(Int64 value)
 {
     _buf.PutInt64(value);
     return(this);
 }
Esempio n. 2
0
 public static void WritePrimitive(IoBuffer buffer, long value)
 {
     buffer.PutInt64(value);
 }