列表的问题

本文关键字:问题 列表 | 更新日期: 2023-09-27 17:49:15

我有一个字符串[]的问题,我想做一种编程语言。如果你知道好的编译器设计教程和c#示例,那就太好了。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
class Program
{
    static void Main()
    {
        StreamReader reader = new StreamReader("C:/tut.txt");
        String data = reader.ReadLine();
        String[] tok;
        foreach(char s in data)
        {
            Console.WriteLine(s);
            tok.add(s); // error
        }
        Console.ReadKey();
    }
}

列表的问题

我不太确定你想要完成什么…也许这吗?

        StreamReader reader = new StreamReader("C:/tut.txt");
        String data = reader.ReadLine();
        List<String> tok = new List<string>();
        foreach (char s in data)
        {
            Console.WriteLine(s);
            tok.Add(s.ToString());
        }