我有一个文件“HighScores.txt”,其中包含诸如
0
12
76
90
54
我想将此文本文件添加到整数数组中,因为我想对其进行排序,我只是在循环每个项目并将其从字符串转换为 int 时遇到了麻烦。
string path = "score.txt";
int[] HighScores;
if (!File.Exists(path))
{
TextWriter tw = new StreamWriter(path);
tw.Close();
}
else if (File.Exists(path))
{
//READ FROM TEXT FILE
}