|
EuclideanLeastCommonMultiple(Int32) Method
|
Gets the least common multiple of all the integers in the source collection.
Namespace: GSF.NumericalAnalysisAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic static int LeastCommonMultiple(
params int[] source
)
Public Shared Function LeastCommonMultiple (
ParamArray source As Integer()
) As Integer
public:
static int LeastCommonMultiple(
... array<int>^ source
)
static member LeastCommonMultiple :
source : int[] -> int GSF.NumericalAnalysis.Euclidean.LeastCommonMultiple = function(... source);
View SourceParameters
- source Int32
- The collection of integers.
Return Value
Int32The least common multiple.
See Also