UInt128.DivRem(UInt128, UInt128) 方法

定義

計算兩個值的商數和餘數。

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)

參數

left
UInt128

除法的值 right

right
UInt128

除以 left 的值。

傳回

除以 leftright 的商數和餘數。

實作

適用於