SByte.DivRem(SByte, SByte) メソッド

定義

2 つの値の商と剰余を計算します。

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する値。

戻り値

の商と剰余 left を で除算します right

実装

適用対象