UInt64.Max(UInt64, UInt64) Metodo

Definizione

Confronta due valori per calcolare che è maggiore.

public:
 static System::UInt64 Max(System::UInt64 x, System::UInt64 y) = System::Numerics::INumber<System::UInt64>::Max;
public static ulong Max (ulong x, ulong y);
static member Max : uint64 * uint64 -> uint64
Public Shared Function Max (x As ULong, y As ULong) As ULong

Parametri

x
UInt64

Valore da confrontare con y.

y
UInt64

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