UInt128.DivRem(UInt128, UInt128) Método

Definição

Calcula o quociente e o restante de dois valores.

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)

Parâmetros

left
UInt128

O valor que right se divide.

right
UInt128

O valor que divide left.

Retornos

O quociente e o restante de left dividido por right.

Implementações

Aplica-se a