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