예제 #1
0
 protected internal override unsafe void _SetLong(int index, long value)
 {
     fixed(byte *addr = &this.Addr(index))
     UnsafeByteBufferUtil.SetLong(addr, value);
 }
 protected internal override void _SetLong(int index, long value) => UnsafeByteBufferUtil.SetLong(this.Addr(index), value);