你好,我是一个新的程序员,我有一个项目,我想要分数保存在一个列表或数组(这两个读取我的文件与球员的用户名)我写了,但我不知道为什么它不写它
下面是我的文本文件“name.txt”:
Timmy1
Nick12
Mary3
这是我的代码(标签6是分数):
List<string> lines = File.ReadAllLines("name.txt").ToList();
void game(int x,string label)
{
label8.Text = label;
randomImage = random.Next(1, x);
pictureBox2.ImageLocation = "dice/" + randomImage.ToString() + ".png";
int x1, y1;
x1 = random.Next(panel1.Width - pictureBox2.Width);
y1 = random.Next(panel1.Height - pictureBox2.Height);
pictureBox2.Location = new Point(x1, y1);
countDown--;
label3.Text = countDown.ToString();
for (int i = 0; i < lines.Count; i++ ) {
if (countDown == 0)
{
timer1.Enabled = false;
pictureBox1.Enabled = false;
DialogResult dialogResult = MessageBox.Show("Play Again?", "Game Over!", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
lines.Append(label6.Text);
Form4 f4 = new Form4(label2.Text, level);
this.Close();
f4.Show();
break;
}
else
{
Form3 f3 = new Form3(label2.Text);
this.Hide();
f3.Show();
break;
}
}
}
我希望文本文件名。txt的结果如下:
Timmy1
*Score of the player Timmy1*
Nick12
*Score of the player Nick12*
Mary3
*Score of the player Mary3*
它不写它,因为你从来没有告诉你的程序这么做。您正在读取文件并将其行存储在列表
中。稍后,您将一些值添加到此列表中,但从未将修改后的列表写入文件。
在代码中的某个地方,您必须调用如下所示的内容:
File.WriteAllLines("name.txt", lines);