I have a
Dim carsDic as Dictionary(Of String, Integer)
Dictionary<string, int> carsDic;
This is the list of Car Codes(string) and their Time(Integer, in minutes);
I want to sort the cars by time, then by code, and return the looser(higher time, upper code).
How can I use LINQ for this? (VB.NET!!, C#?!)
1 Answer