MathUtilitiesGetMinMax Method
Gets the minimum and maximum from the specified numbers.
Namespace: Avalonia.UtilitiesAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static (double min, double max) GetMinMax(
double a,
double b
)
Public Shared Function GetMinMax (
a As Double,
b As Double
) As (min As Double, max As Double)
static member GetMinMax :
a : float *
b : float -> ValueTuple<float, float>
- a Double
- The first number.
- b Double
- The second number.
ValueTupleDouble,
DoubleA tuple containing the minimum and maximum of the two specified numbers.