我正在尝试为我正在制作的地理测验应用程序创建一个记分牌。我正在尝试从最大到最小来组织分数,我什至不知道从哪里开始。下面是提交按钮功能的代码:
private void button1_Click(object sender, EventArgs e)//Submit Button
{
if(isDone)
{
string[] lines = System.IO.File.ReadAllLines(path+"/score.txt");
StreamWriter sw = new StreamWriter(path+"/score.txt");
foreach (string line in lines)
{
if (line != null && line.Length > 0) {sw.WriteLine("\n"+ line); }
}
sw.WriteLine("Score:" + score +" ~"+ textBox1.Text + " -- " + label9.Text + " -- " + numCorrect + "/41" );
sw.Close();
}
}
我想按分数变量和从文本文件中的行中获取的数字对其进行排序
不负相思意
相关分类