Esempio n. 1
0
 public bool TryReadLeUInt64(out ulong value)
 {
     if (!ByteMemoryArea.TryReadLeUInt64(this.bytes, off, out value))
     {
         return(false);
     }
     off += 8;
     return(true);
 }
Esempio n. 2
0
 public bool TryPeekLeUInt64(int offset, out ulong value)
 {
     return(ByteMemoryArea.TryReadLeUInt64(bytes, offset + off, out value));
 }