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