Meta.Numerics Library
LCM Method (u, v)
Meta.NumericsMeta.Numerics.FunctionsAdvancedIntegerMathLCM(Int64, Int64)
Computes the least common multiple of two integers.
Declaration Syntax
C#Visual BasicVisual C++F#
public static long LCM(
	long u,
	long v
)
Public Shared Function LCM ( _
	u As Long, _
	v As Long _
) As Long
public:
static long long LCM(
	long long u, 
	long long v
)
static member LCM : 
        u:int64 * 
        v:int64 -> int64 
Parameters
u (Int64)
The first integer.
v (Int64)
The second integer.
Return Value
The least common multiple of u and v.
See Also