Byte.INumberBase<Byte>.MinMagnitudeNumber(Byte, Byte) Method

Definition

Compares two values to compute which has the lesser magnitude and returning the other value if an input is NaN.

 static System::Byte System.Numerics.INumberBase<System.Byte>.MinMagnitudeNumber(System::Byte x, System::Byte y) = System::Numerics::INumberBase<System::Byte>::MinMagnitudeNumber;
static byte INumberBase<byte>.MinMagnitudeNumber (byte x, byte y);
static member System.Numerics.INumberBase<System.Byte>.MinMagnitudeNumber : byte * byte -> byte
 Shared Function MinMagnitudeNumber (x As Byte, y As Byte) As Byte Implements INumberBase(Of Byte).MinMagnitudeNumber

Parameters

x
Byte

The value to compare with y.

y
Byte

The value to compare with x.

Returns

x if it is less than y; otherwise, y.

Implements

Applies to