Big Integer.Least Common Multiple 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.3
C#
The least common multiple of left and right.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static BigInteger LeastCommonMultiple(
BigInteger left,
BigInteger right
)
Parameters
- left BigInteger
- A BigInteger number.
- right BigInteger
- A BigInteger number.
Return Value
BigIntegerThe least common multiple of left and right.