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
Use LINQ:
myScores.OrderBy(s => s.Score);
Here is a great resource to learn about the different LINQ operators.