BACnet.SchemaParser.Lexer._readChar C# (CSharp) Method

_readChar() private method

Consumes the next character
private _readChar ( ) : char
return char
        private char _readChar()
        {
            char ret = _peekChar();

            _column++;
            if(_column > _line.Length)
            {
                _nextLine();
            }

            return ret;
        }