Byte.IModulusOperators<Byte,Byte,Byte>.Modulus(Byte, Byte) 运算符

定义

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

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

参数

left
Byte

除法 right 的值。

right
Byte

除以 的值 left

返回

的模数或余数 left 除以 right

实现

适用于