UInt32.Max(UInt32, UInt32) Metodo

Definizione

Confronta due valori per calcolare che è maggiore.

public:
 static System::UInt32 Max(System::UInt32 x, System::UInt32 y) = System::Numerics::INumber<System::UInt32>::Max;
public static uint Max (uint x, uint y);
static member Max : uint32 * uint32 -> uint32
Public Shared Function Max (x As UInteger, y As UInteger) As UInteger

Parametri

x
UInt32

Valore da confrontare con y.

y
UInt32

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