Returns the lowest value among the list of values.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public static double LowestValue(
	IList<double> values
)
Visual Basic (Declaration)
Public Shared Function LowestValue ( _
	values As IList(Of Double) _
) As Double
Visual C++
public:
static double LowestValue(
	IList<double>^ values
)

Parameters

values
Type: System.Collections.Generic..::.IList<(Of <(Double>)>)
The list of double values to analyze.

Return Value

The lowest double value in the list.

See Also