First, have a look at this code:
Dictionary<int,int> dict = Dictionary<int,int>();
dict[3] = 1;
dict[2] = 2;
dict[1] = 3;
foreach(KeyValuePair<int,int> item in dict.OrderByDescending(p => p.Value))
{
print(item.Value);
break;
}
This code, basically prints the value of the entry in the dictionary with the highest value. I'd like to accomplish this without using a "broken" foreach loop. How might I do that?