我遇到String []的问题,我想编写一种编程语言。如果您对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();
}
}
答案 0 :(得分:1)
我不确定你想要完成什么......也许这个?
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());
}