Int128.GreaterThan(Int128, Int128) 运算符

定义

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

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

参数

left
Int128

要与 right进行比较的值。

right
Int128

要与 left进行比较的值。

返回

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

实现

适用于