AsmResolver.MemoryStreamReader.Advance C# (CSharp) Method

Advance() private method

private Advance ( int count ) : void
count int
return void
        private void Advance(int count)
        {
            if (_position > _endOffset)
                throw new EndOfStreamException();
            _position += count;
        }