|
CommonMinT Method
|
Returns the smallest item from a list of parameters.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public static T Min<T>(
params T[] itemList
)
Public Shared Function Min(Of T) (
ParamArray itemList As T()
) As T
public:
generic<typename T>
static T Min(
... array<T>^ itemList
)
static member Min :
itemList : 'T[] -> 'T
JavaScript does not support generic types or methods.
View SourceParameters
- itemList T
- A variable number of parameters of the specified type.
Type Parameters
- T
- Return type Type that is the minimum value in the itemList.
Return Value
TResult is the minimum value of type
Type in the
itemList.
See Also