Byte.DivRem(Byte, Byte) Method

Definition

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

right
Byte

The value which divides left.

Returns

The quotient and remainder of left divided-by right.

Implements

Applies to