ConvergenceTestCollection<T>.CopyTo Method

Copies the members of the collection to the specified array.

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public void CopyTo(
	ConvergenceTest<T>[] array,
	int arrayIndex
)

Parameters

array  ConvergenceTest<T>[]
An array of ConvergenceTest<T> objects.
arrayIndex  Int32
Index into array where copying is to begin.

Implements

ICollection<T>.CopyTo(T[], Int32)

Exceptions

ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is less than zero.
ArgumentException The length of array is less than arrayIndex plus the length of this instance.

See Also