コード例 #1
0
 //The sorted button calls the method in the ScoreListClass class to order the list.
 private void btn_SortedScores_Click(object sender, EventArgs e)
 {
     sortedScores.Sort();
     ScoreListClass.SortedScores(sortedScores);
 }
コード例 #2
0
 //The unsorted button calls the method in the ScoreListClass class to order the list.
 private void btn_UnsortedList_Click(object sender, EventArgs e)
 {
     ScoreListClass.UnsortedScores(unsortedScores);
 }