Returns the largest of three numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static T Max(
T value1,
T value2,
T value3
)
Public Shared Function Max (
value1 As T,
value2 As T,
value3 As T
) As T
public:
static T Max(
T value1,
T value2,
T value3
)
static member Max :
value1 : 'T *
value2 : 'T *
value3 : 'T -> 'T
Parameters
- value1
- Type: T
The first value. - value2
- Type: T
The second value. - value3
- Type: T
The third value.
Return Value
Type:
T
Reference