CommonMinT Method
Returns the smallest item from a list of parameters.
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.138 -- Release Build+dacff88cce10d287c7434d5aac59c76948c712b1
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
)
JavaScript does not support generic types or methods.
- itemList T
- A variable number of parameters of the specified type.
- T
- Return type Type that is the minimum value in the itemList.
TResult is the minimum value of type
Type in the
itemList.