BigInteger.Min Method

Returns the smallest of two numbers.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigInteger Min(
	BigInteger left,
	BigInteger right
)

Parameters

left  BigInteger
A BigInteger.
right  BigInteger
A BigInteger.

Return Value

BigInteger
The smaller of left and right.

Implements

INumber<TSelf>.Min(TSelf, TSelf)

See Also