//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);
 }
 //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);
 }