Returns the least common multiple of two integers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static decimal LeastCommonMultiple(
long a,
long b
)
Public Shared Function LeastCommonMultiple (
a As Long,
b As Long
) As Decimal
public:
static Decimal LeastCommonMultiple(
long long a,
long long b
)
static member LeastCommonMultiple :
a : int64 *
b : int64 -> decimal
Parameters
- a
- Type: SystemInt64
A long (64 bit) integer. - b
- Type: SystemInt64
A long (64 bit) integer.
Return Value
Type:
DecimalA
Decimalthat is the least common multiple of
a
and
b.
Reference