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
This will sort the list with the highest scores first:
IEnumerable scores = GetSomeScores().OrderByDescending(hs => hs.Score);