使用 System.IO.File 類從檔案讀取

你可以使用 System.IO.File.ReadAllText 函式將檔案的全部內容讀入字串。

string text = System.IO.File.ReadAllText(@"C:\MyFolder\MyTextFile.txt");

你還可以使用 System.IO.File.ReadAllLines 函式將檔案讀取為行陣列 :

string[] lines = System.IO.File.ReadAllLines(@"C:\MyFolder\MyTextFile.txt");