SByte.DivRem(SByte, SByte) 方法

定義

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

public:
 static ValueTuple<System::SByte, System::SByte> DivRem(System::SByte left, System::SByte right) = System::Numerics::IBinaryInteger<System::SByte>::DivRem;
public static (sbyte Quotient, sbyte Remainder) DivRem (sbyte left, sbyte right);
static member DivRem : sbyte * sbyte -> ValueTuple<sbyte, sbyte>
Public Shared Function DivRem (left As SByte, right As SByte) As ValueTuple(Of SByte, SByte)

參數

left
SByte

除法的值 right

right
SByte

除以 left 的值。

傳回

除以 leftright 的商數和餘數。

實作

適用於