Well guys, I have variable-sized List and I have populated it with double values...

List<double> tempAvg = new List<double>();

I want to know the Maximum value within the List. I thought first to sort the List and then get the last index, but I dont know how to do that.

any Idea?