I have a working line of code that retrieves the highest integer from a column in an ObservableCollection.
int highscore = dataAccess.GamePlayers.Max(t=> t.TotalScore);
I need a way to to retrieve the "next highest" integer from the same column. How could I achieve this with minimal code?