UInt128.GreaterThan(UInt128, UInt128) 运算符

定义

比较两个值以确定哪个值更大。

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

参数

left
UInt128

要与 right进行比较的值。

right
UInt128

要与 left进行比较的值。

返回

如果 true 大于 left,则为 right;否则为 false

实现

适用于