Copies the entire ParameterCollection to a Parameter array.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub CopyTo ( _
	array As Parameter(), _
	index As Integer _
)
C#
public void CopyTo (
	Parameter[] array,
	int index
)
C++
public:
void CopyTo (
	array<Parameter^>^ array, 
	int index
)

Parameters

array ()
The one-dimensional Parameter array that is the destination of the elements copied from the collection.
index (System.Int32)
The index in array where copying is to begin.

Exceptions

ExceptionCondition
ArgumentNullExceptionarray is nullNothingnullptr.
ArgumentOutOfRangeExceptionindex is less than zero.