so I have this dictionary
Dictionary<ulong, PlayerData> PlayersCache = new Dictionary<ulong, PlayerData>();
I have class PlayerData
public class PlayerData
{
public int Shots;
public int Hits;
public PlayerData()
{
}
}
How can I sort Dictionary so player with the most hits will be first the second player with most hits will be second, third player with most hits will be third... In the Dictionary Sort it ascending.