I'm trying to sort my string array but i have no idea how to do it :(
I have a list that looks like this : 
On fields is a name and one is a value, all of them are strings. I need to sort this list by value and return 14 names that have the biggest value. The regular sorting cannot help me with this so maybe one of you have an idea how I can do it?
using (StreamReader reader = new StreamReader(response.Stream))
{
string line;
while ((line = reader.ReadLine()) != null)
{
resultsList.Add(line);
}
}
var list= new List<string[]>();
foreach (var row in resultsList)
{
var temp = row.Split(new string[] { "\t" }, StringSplitOptions.None);
list.Add(temp);
}
arrayorArrayList?