Find a Nth highest or lowest number in a given series of numbers - Solution1

Rajnilari2015
Posted by Rajnilari2015 under C# category on | Points: 40 | Views : 1082
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.

Comments or Responses

Login to post response