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