|
CommonMaxT Method
|
Returns the largest item from a list of parameters.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax 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
)
static member Max :
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 maximum value in the itemList.
Return Value
TResult is the maximum value of type
Type in the
itemList.
See Also