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的值。

返回

除以 rightleft商和余数。

实现

适用于