Exemple #1
0
 /// <summary>
 /// Sorts the combo's sets and runs by their value, in descending order
 /// </summary>
 public void Sort()
 {
     Sets = Sets.OrderByDescending(set => set.Value).ToList();
     Runs = Runs.OrderByDescending(run => run.Value).ToList();
 }