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

Lexer() public method

Constructs a new lexer instance
public Lexer ( TextReader reader ) : System
reader TextReader The text reader to parse
return System
        public Lexer(TextReader reader)
        {
            this._reader = reader;
            _nextLine();
        }