Int128.DivRem(Int128, Int128) Method
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.
Computes the quotient and remainder of two values.
public:
static ValueTuple<Int128, Int128> DivRem(Int128 left, Int128 right) = System::Numerics::IBinaryInteger<Int128>::DivRem;
public static (Int128 Quotient, Int128 Remainder) DivRem (Int128 left, Int128 right);
static member DivRem : Int128 * Int128 -> ValueTuple<Int128, Int128>
Public Shared Function DivRem (left As Int128, right As Int128) As ValueTuple(Of Int128, Int128)
Parameters
- left
- Int128
The value which right
divides.
- right
- Int128
The value which divides left
.
Returns
The quotient and remainder of left
divided-by right
.
Implements
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.