UInt16.DivRem(UInt16, UInt16) Método

Definição

Calcula o quociente e o restante de dois valores.

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)

Parâmetros

left
UInt16

O valor que right se divide.

right
UInt16

O valor que divide left.

Retornos

O quociente e o restante de left dividido por right.

Implementações

Aplica-se a