I have a generic GetMinimum
method. It accepts array of IComparable type (so it may be string[]
or double[]
). in the case of double[]
how can I implement this method to ignore the double.NaN
values? (I'm looking for good practices)
when I pass this array
double[] inputArray = { double.NaN, double.NegativeInfinity, -2.3, 3 };
it returns the double.NaN!
public T GetMinimum<T>(T[] array) where T : IComparable<T>
{
T result = array[0];
foreach (T item in array)
{
if (result.CompareTo(item) > 0)
{
result = item;
}
}
return result;
}