這個範例會使用 StreamReader 類別的 ReadLine 方法,將文字檔的內容一次一行讀入字串中。每一個文字行都會儲存到字串 line 中並顯示在螢幕上。
範例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
int counter = 0; string line;
// Read the file and display it line by line. System.IO.StreamReader file = new System.IO.StreamReader("c:\test.txt"); while((line = file.ReadLine()) != null) { Console.WriteLine (line); counter++; }