UInt16.DivRem(UInt16, UInt16) Metodo

Definizione

Calcola il quoziente e il resto di due valori.

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

Parametri

left
UInt16

Valore che right divide.

right
UInt16

Valore che divide left.

Restituisce

Quoziente e resto di left diviso per right.

Implementazioni

Si applica a