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