Vector<T>.CopyTo(ArraySlice<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 virtual void CopyTo(
	ArraySlice<T> array
)

Parameters

array  ArraySlice<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