UInt32.DivRem(UInt32, UInt32) Metodo

Definizione

Calcola il quoziente e il resto di due valori.

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)

Parametri

left
UInt32

Valore che right divide.

right
UInt32

Valore che divide left.

Restituisce

Il quoziente e il resto di left diviso in base righta .

Implementazioni

Si applica a