Esempio n. 1
0
 public IByteBuffer WriteLong(long value)
 {
     this.buf.WriteLong(ByteBufferUtil.SwapLong(value));
     return(this);
 }
Esempio n. 2
0
 public long ReadLong()
 {
     return(ByteBufferUtil.SwapLong(this.buf.ReadLong()));
 }
Esempio n. 3
0
 public IByteBuffer SetLong(int index, long value)
 {
     this.buf.SetLong(index, ByteBufferUtil.SwapLong(value));
     return(this);
 }
Esempio n. 4
0
 public long GetLong(int index)
 {
     return(ByteBufferUtil.SwapLong(this.buf.GetLong(index)));
 }
 public long ReadLong() => ByteBufferUtil.SwapLong(this.buf.ReadLong());
 public long GetLong(int index) => ByteBufferUtil.SwapLong(this.buf.GetLong(index));