MathUtilitiesLessThan(Double, Double) Method
LessThan - Returns whether or not the first double is less than the second double.
That is, whether or not the first is strictly less than *and* not within epsilon of
the other number.
Namespace: Avalonia.UtilitiesAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static bool LessThan(
double value1,
double value2
)
Public Shared Function LessThan (
value1 As Double,
value2 As Double
) As Boolean
static member LessThan :
value1 : float *
value2 : float -> bool
- value1 Double
- The first double to compare.
- value2 Double
- The second double to compare.
Boolean