UInt16.DivRem(UInt16, UInt16) Methode

Definition

Berechnet den Quotienten und den Rest von zwei Werten.

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)

Parameter

left
UInt16

Der Wert, der right geteilt wird.

right
UInt16

Der Wert, der unterteilt leftwird.

Gibt zurück

Quotient und Rest von left dividiert durch right.

Implementiert

Gilt für: