Suppose we have a collection of numbers (+ve, -ve, fractional) and we need to find out the MAX and MIN from that. The below code will help to do so
List<double> lstNumbers= new List<double>() { 1, 2.06, 34, -4, 5.90, 61.9, 7.8, 8, 9, 18.0,23.7 };
double minNum = lstNumbers.Min(); //lowest number
double maxNum = lstNumbers.Max(); //highest number
Console.WriteLine("Min = {0} , Max = {1}", minNum, maxNum);
Here we are using
Min() and Max() Extension Methods of Enumerable Class that resides under the namespace System.Linq to accomplish the operation.