Beispiel #1
0
 protected internal override short _GetShortLE(int index) => UnsafeByteBufferUtil.GetShortLE(this.Addr(index));
Beispiel #2
0
 protected internal override short _GetShortLE(int index)
 {
     fixed(byte *addr = &this.Addr(index))
     return(UnsafeByteBufferUtil.GetShortLE(addr));
 }
 protected internal sealed override short _GetShortLE(int index)
 {
     fixed (byte* addr = &Addr(index))
         return UnsafeByteBufferUtil.GetShortLE(addr);
 }
Beispiel #4
0
 protected internal sealed override short _GetShortLE(int index) => UnsafeByteBufferUtil.GetShortLE(Addr(index));