SByte.DivRem(SByte, SByte) Method
Definition
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 which right
divides.
- right
- SByte
The value which divides left
.
Returns
The quotient and remainder of left
divided-by right
.
Implements
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.