예제 #1
0
        private void TestLex()
        {
            Lex          lex       = new Lex();
            List <Token> tokenList = lex.DebugTest(ExpressionCode);

            string text = string.Empty;

            foreach (Token t in tokenList)
            {
                text += t.ToString_S() + "\r\n";
            }

            TokenListText = text;
        }