UIntPtr.DivRem(UIntPtr, UIntPtr) Method

Definition

Computes the quotient and remainder of two values.

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

Parameters

left
UIntPtr

unativeint

The value which right divides.

right
UIntPtr

unativeint

The value which divides left.

Returns

ValueTuple<UIntPtr,UIntPtr>

ValueTuple<unativeint,unativeint>

The quotient and remainder of left divided-by right.

Implements

Applies to