UInt128.GreaterThanOrEqual(UInt128, UInt128) Operador

Definición

Compara dos valores para determinar cuál es mayor o igual.

public:
 static bool operator >=(UInt128 left, UInt128 right) = System::Numerics::IComparisonOperators<UInt128, UInt128, bool>::op_GreaterThanOrEqual;
public static bool operator >= (UInt128 left, UInt128 right);
static member ( >= ) : UInt128 * UInt128 -> bool
Public Shared Operator >= (left As UInt128, right As UInt128) As Boolean

Parámetros

left
UInt128

Valor que se va a comparar con right.

right
UInt128

Valor que se va a comparar con left.

Devoluciones

Es true si left es mayor o igual que right; en caso contrario, es false.

Implementaciones

Se aplica a