UInt128.Modulus(UInt128, UInt128) 操作员

定义

将两个值相除以计算其模数或余数。

public:
 static UInt128 operator %(UInt128 left, UInt128 right) = System::Numerics::IModulusOperators<UInt128, UInt128, UInt128>::op_Modulus;
public static UInt128 operator % (UInt128 left, UInt128 right);
static member ( % ) : UInt128 * UInt128 -> UInt128
Public Shared Operator Mod (left As UInt128, right As UInt128) As UInt128

参数

left
UInt128

right 除的值。

right
UInt128

left的值。

返回

left 除以 right的模数或余数。

实现

适用于