好的,所以我有一個保存在文本文件中的程序的高分列表,但我需要按升序排列它們。如何在vb.net中安排包含字符串和整數的列表?
這裏,我已經走到這一步,因爲它的編碼:
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
比利鮑勃...................總動作狂e:19
畢達哥拉斯...................總動作:50
彼得潘................ ...總移到發:29
這就是我想要它看起來像:
上述法律................ ...總動作:19
比利鮑勃...................總動作:19
彼得潘.......... .........總動幅:29
克萊德...................總移動數:32
畢達哥拉斯...................移動總數製作:50
你用什麼標準來進行你想要的排序? – Melanie 2013-04-25 21:05:54
您是否堅定使用txt文件?對於中間存儲,我會推薦像XML這樣的東西。然後,您可以通過代碼輕鬆訂購任何產品,並按照您的要求獲得結果。 – Neolisk 2013-04-25 22:09:39