ConvergenceTestCollection<T>.CopyTo Method

Copies the members of the collection to the specified array.

Definition

Namespace: Numerics.NET.Algorithms
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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

ArgumentNullException

array is null.

ArgumentOutOfRangeException

arrayIndex is less than zero.

ArgumentException

The length of array is less than arrayIndex plus the length of this instance.

See Also