public bool TryReadLeUInt32(out uint ui32) { if (!ByteMemoryArea.TryReadLeUInt32(this.bytes, (uint)off, out ui32)) { return(false); } off += 4; return(true); }
public bool TryPeekLeUInt32(int offset, out uint value) { return(ByteMemoryArea.TryReadLeUInt32(bytes, offset + off, out value)); }