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

_nextLine() private method

Moves the lexer to the next line
private _nextLine ( ) : void
return void
        private void _nextLine()
        {
            _column = 0;
            _line = _reader.ReadLine();
        }