Big Integer.Least Common Multiple Method
            
            
            
            
            Returns the least common multiple (LCM) of two BigInteger numbers.
            
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
    C#
    
 
 
The least common multiple of left and right.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.