UInt128.DivRem(UInt128, UInt128) Method

Definition

Computes the quotient and remainder of two values.

public:
 static ValueTuple<UInt128, UInt128> DivRem(UInt128 left, UInt128 right) = System::Numerics::IBinaryInteger<UInt128>::DivRem;
public static (UInt128 Quotient, UInt128 Remainder) DivRem (UInt128 left, UInt128 right);
static member DivRem : UInt128 * UInt128 -> ValueTuple<UInt128, UInt128>
Public Shared Function DivRem (left As UInt128, right As UInt128) As ValueTuple(Of UInt128, UInt128)

Parameters

left
UInt128

The value which right divides.

right
UInt128

The value which divides left.

Returns

The quotient and remainder of left divided-by right.

Implements

Applies to