Ejemplo n.º 1
0
        /// <summary>
        ///  Reads a 4-byte unsigned integer from the current stream and advances the position
        ///  of the stream by four bytes.
        /// </summary>
        /// <returns>A 4-byte unsigned integer read from this stream.</returns>
        public uint ReadUInt32()
        {
            Debug.Assert(_buffer != null);
            var valRead = _buffer.GetUInt(_offset);

            _offset += WoffBuffer.SizeOfUInt;

            return(valRead);
        }