| 
            
              CommonMaxT Method
             | 
          
        
        Returns the largest item from a list of parameters.
        
        Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic 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