CommonMaxT Method
Returns the largest item from a list of parameters.
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.165 -- Release Build+e14d337b173ad33e50be6747ce5b02f477f99484
public static T Max<T>(
params T[] itemList
)
Public Shared Function Max(Of T) (
ParamArray itemList As T()
) As T
public:
generic<typename T>
static T Max(
... 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 maximum value in the itemList.
TResult is the maximum value of type
Type in the
itemList.