SByte.DivRem(SByte, SByte) Method

Definition

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 which right divides.

right
SByte

The value which divides left.

Returns

The quotient and remainder of left divided-by right.

Implements

Applies to