MathObject.max(Object, Object, Object[]) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne le plus grand de plusieurs nombres spécifiés.
Cette API prend en charge l'infrastructure du produit et n'est pas destinée à être utilisée directement à partir de votre code.
public:
static double max(System::Object ^ x, System::Object ^ y, ... cli::array <System::Object ^> ^ args);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Math_max)]
public static double max (object x, object y, params object[] args);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Math_max)>]
static member max : obj * obj * obj[] -> double
Public Shared Function max (x As Object, y As Object, ParamArray args As Object()) As Double
Paramètres
- x
- Object
Premier nombre à comparer.
- y
- Object
Deuxième nombre à comparer.
- args
- Object[]
Nombres supplémentaires à comparer.
Retours
Plus grand des nombres x
, y
et de ceux contenus dans args
.
- Attributs