|   | 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.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
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);
Parameters
- source  Int32
- The collection of integers.
Return Value
Int32The least common multiple.
 See Also
See Also