Copies the components of this Vector to another vector.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overridable Sub CopyTo ( _
	array As Double() _
)
C#
public virtual void CopyTo (
	double[] array
)
C++
public:
virtual void CopyTo (
	array<double>^ array
)

Parameters

array ()
A Double array that is to hold the components of this Vector.

Exceptions

ExceptionCondition
ArgumentNullExceptionvector is nullNothingnullptr
ArgumentException The length of array is less than the length of this instance.