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