UInt32.DivRem(UInt32, UInt32) Method

Definition

Computes the quotient and remainder of two values.

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

Parameters

left
UInt32

The value which right divides.

right
UInt32

The value which divides left.

Returns

The quotient and remainder of left divided-by right.

Implements

Applies to