UInt64.IModulusOperators<UInt64,UInt64,UInt64>.Modulus 运算符

定义

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

 static System::UInt64 System.Numerics.IModulusOperators<System.UInt64,System.UInt64,System.UInt64>.operator %(System::UInt64 left, System::UInt64 right) = System::Numerics::IModulusOperators<System::UInt64, System::UInt64, System::UInt64>::op_Modulus;
static ulong IModulusOperators<ulong,ulong,ulong>.operator % (ulong left, ulong right);
static member ( % ) : uint64 * uint64 -> uint64
 Shared Operator Mod (left As ULong, right As ULong) As ULong Implements IModulusOperators(Of ULong, ULong, ULong).op_Modulus

参数

left
UInt64

除法的值 right

right
UInt64

除以 left的值。

返回

的模数或余数 left 除以 right

实现

适用于