好的,所以我有一个保存在文本文件中的程序的高分列表,但我需要按升序排列它们。
这是我到目前为止的编码:
WinnerName = txtName.Text
If Player1Wins = True Then
My.Computer.FileSystem.WriteAllText("directory to my textfile, which I prefer not to disclose", _
vbNewLine & WinnerName & "...................Total Moves made: " & PlayerOneRolls, True)
txtList.Text = txtList.Text & vbNewLine & WinnerName & "...................Total Moves made: " & PlayerOneRolls
End If
If Player2Wins = True Then
My.Computer.FileSystem.WriteAllText("Directory to my text file, which I prefer not to disclose", _
vbNewLine & WinnerName & "...................Total Moves made: " & PlayerTwoRolls, True)
txtList.Text = txtList.Text & vbNewLine & WinnerName & "...................Total Moves made: " & PlayerTwoRolls
End If
这是我的文本文件目前的样子:
克莱德........总步数:32
高于规则......................总步数: 19
比利·鲍勃.......总步数:19
毕达哥拉斯......................总步数: 50
彼得潘............总移动次数: 29
这就是我想要的样子:
高于法律......................总步数:19
比利鲍勃......................总步数: 19
彼得潘............总移动数: 29
克莱德............总移动完成:32
毕达哥拉斯............总移动:50