Exemplo n.º 1
0
        char?NextChar()
        {
            var c = location.Current;

            location = location.MoveToRight();
            return(c);
        }
Exemplo n.º 2
0
 public Parser(string input)
 {
     location = new ParserLocation(input);
 }