Copies the rows in an AnovaTable to an array.

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

Syntax

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

Parameters

array ()
A AnovaRow array.
startIndex (System.Int32)
Index into array where copying is to begin.

Exceptions

ExceptionCondition
ArgumentNullExceptionarray is nullNothingnullptr.
ArgumentOutOfRangeExceptionstartIndex is less than zero.
ArgumentExceptionCount is greater than the number of elements from startIndex to the end of array.