UInt64.IModulusOperators<UInt64,UInt64,UInt64>.Modulus Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Divides two values together to compute their modulus or remainder.
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
Parameters
- left
- UInt64
The value that right
divides.
- right
- UInt64
The value that divides left
.
Returns
The modulus or remainder of left
divided by right
.
Implements
Applies to
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.