Vector<T>.CopyTo(T[]) Method

Copies the elements of this vector to an array.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public void CopyTo(
	T[] array
)

Parameters

array  T[]
An array that is to hold the elements of this Vector<T>.

Exceptions

ArgumentNullExceptionarray is null
ArgumentException The length of array is less than the length of this instance.

See Also