Int128.DivRem(Int128, Int128) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算兩個值的商數和餘數。
public:
static ValueTuple<Int128, Int128> DivRem(Int128 left, Int128 right) = System::Numerics::IBinaryInteger<Int128>::DivRem;
public static (Int128 Quotient, Int128 Remainder) DivRem (Int128 left, Int128 right);
static member DivRem : Int128 * Int128 -> ValueTuple<Int128, Int128>
Public Shared Function DivRem (left As Int128, right As Int128) As ValueTuple(Of Int128, Int128)
參數
- left
- Int128
除法的值 right
。
- right
- Int128
除以 left
的值。
傳回
除以 left
right
的商數和餘數。