Vector<T>.CopyTo(T[], Int32) 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,
	int index
)

Parameters

array  T[]
An array that is to hold the elements of this Vector<T>.
index  Int32
Index into array where copying is to start.

Exceptions

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

See Also