我有一個外部文本文件,其中包含數字。如4 54 12 32由空格分隔。 我希望能夠讀取所有數字並將它們添加到列表中。從文本文件中讀取數字並分隔空格
static void Main(string[] args)
{
List<int> numbers;
numbers = new List<int>();
StreamReader file = new StreamReader("C:\\text.txt");
while (!file.EndOfStream)
{
string line = file.ReadLine();
Console.Write(line + " ");
}
}
的ReadLine讀取整個行,所以我不能分開的單獨號碼,並將其轉換爲整數,我試圖瞭解它讀取每個數字的字符代碼,而不是數字本身。