0
如何製作(列表單詞)中的單詞列表並用方法填充它void void void ReadWords(string,List。此方法必須獲取文件的名稱:文本和列表必須用此文件中的話如何使用streamreader從外部文件填充列表
那麼,如何做到這一點
我開始用這樣的:?
List<string> woorden = new List<string>();
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("txt.txt");
int counter = 0;
while (!file.EndOfStream)
{
string woord = file.ReadLine();
for (int i = 0; i < woord.Length; i++)
counter++;
}
Console.WriteLine(counter);
file.Close();
Console.ReadKey();
你的問題不是很清楚......你需要什麼?你卡在哪裏? –