UInt16.Max(UInt16, UInt16) Metodo

Definizione

Confronta due valori per calcolare che è maggiore.

public:
 static System::UInt16 Max(System::UInt16 x, System::UInt16 y) = System::Numerics::INumber<System::UInt16>::Max;
public static ushort Max (ushort x, ushort y);
static member Max : uint16 * uint16 -> uint16
Public Shared Function Max (x As UShort, y As UShort) As UShort

Parametri

x
UInt16

Valore da confrontare con y.

y
UInt16

Valore da confrontare con x.

Restituisce

x se è maggiore di y; in caso contrario, y.

Implementazioni

Commenti

Per IFloatingPoint<TSelf> questo metodo corrisponde alla funzione IEEE 754:2019 maximum . Ciò richiede che gli input NaN vengano propagati nuovamente al chiamante e per -0.0 essere considerati come minori di +0.0.

Si applica a