UInt128.LessThanOrEqual(UInt128, UInt128) 运算符

定义

比较两个值以确定哪个值小于或等于。

public:
 static bool operator <=(UInt128 left, UInt128 right) = System::Numerics::IComparisonOperators<UInt128, UInt128, bool>::op_LessThanOrEqual;
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进行比较的值。

返回

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

实现

适用于