SByte.DivRem(SByte, SByte) Method (System) (original) (raw)

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Computes the quotient and remainder of two values.

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)

Parameters

left

SByte

The value that right divides.

right

SByte

The value that divides left.

Returns

The quotient and remainder of left divided-by right.

Implements

Applies to