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