 | MathUtilsMaxT Method (T) |
Returns the maximum value of the specified values.
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static T Max<T>(
params T[] values
)
Public Shared Function Max(Of T) (
ParamArray values As T()
) As T
public:
generic<typename T>
static T Max(
... array<T>^ values
)
static member Max :
values : 'T[] -> 'T
Parameters
- values
- Type: T
Values to compare.
Type Parameters
- T
- Type of values.
Return Value
Type:
TMaximum value of the specified values.
See Also