Byte.DivRem(Byte, Byte) 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::Byte, System::Byte> DivRem(System::Byte left, System::Byte right) = System::Numerics::IBinaryInteger<System::Byte>::DivRem;
public static(byte Quotient, byte Remainder) DivRem(byte left, byte right);
static member DivRem : byte * byte -> ValueTuple<byte, byte>
Public Shared Function DivRem (left As Byte, right As Byte) As ValueTuple(Of Byte, Byte)

Parameters

left

Byte

The value that right divides.

right

Byte

The value that divides left.

Returns

The quotient and remainder of left divided-by right.

Implements

Applies to