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(
decimal a,
decimal b
)
Public Shared Function LeastCommonMultiple (
a As Decimal,
b As Decimal
) As Decimal
public:
static Decimal LeastCommonMultiple(
Decimal a,
Decimal b
)
static member LeastCommonMultiple :
a : decimal *
b : decimal -> decimal
Parameters
- a
- Type: SystemDecimal
A Decimal. - b
- Type: SystemDecimal
A Decimal.
Return Value
Type:
DecimalThe least common multiple of
a
and
b.
Reference