BigInteger.LeastCommonMultiple Method

Returns the least common multiple (LCM) of two BigInteger numbers.

Definition

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

Parameters

left  BigInteger
A BigInteger number.
right  BigInteger
A BigInteger number.

Return Value

BigInteger
The least common multiple of left and right.

See Also