Vector<T>.CopyTo(Vector<T>, Int32) Method

Copies the elements of this vector to another vector starting at the specified position.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Vector<T> CopyTo(
	Vector<T> destination,
	int index
)

Parameters

destination  Vector<T>
A vector whose elements are to be set.
index  Int32
The index in destination where copying is to start.

Return Value

Vector<T>
A reference to the destination vector.

Exceptions

ArgumentNullExceptiondestination is null
ArgumentOutOfRangeExceptionindex is less than zero.
ArgumentException The length of destination is less than index plus the length of this instance.

See Also