示例#1
0
 protected internal override long _GetLong(int index) => UnsafeByteBufferUtil.GetLong(this.Addr(index));
示例#2
0
 protected internal override long _GetLong(int index)
 {
     fixed(byte *addr = &this.Addr(index))
     return(UnsafeByteBufferUtil.GetLong(addr));
 }
 protected internal sealed override long _GetLong(int index)
 {
     fixed (byte* addr = &Addr(index))
         return UnsafeByteBufferUtil.GetLong(addr);
 }
示例#4
0
 protected internal sealed override long _GetLong(int index) => UnsafeByteBufferUtil.GetLong(Addr(index));