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
var sortedList = yourList.OrderBy(x => x.Score);
or use OrderByDescending to sort in opposite way
OrderByDescending