I need to sort a highscore file for my game I\'ve written.
Each highscore has a Name, Score and Date variable. I store each one in a List.
Here is the struct tha
List mylist = GetHighScores(); var sorted = mylist.OrderBy(h=>h.Score);