AsmResolver.MemoryStreamReader.Advance C# (CSharp) Метод

Advance() приватный Метод

private Advance ( int count ) : void
count int
Результат void
        private void Advance(int count)
        {
            if (_position > _endOffset)
                throw new EndOfStreamException();
            _position += count;
        }