Copies the elements of this vector
to another vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> CopyTo(
Vector<T> destination
)
Public Function CopyTo (
destination As Vector(Of T)
) As Vector(Of T)
public:
Vector<T>^ CopyTo(
Vector<T>^ destination
)
member CopyTo :
destination : Vector<'T> -> Vector<'T>
Parameters
- destination
- Type: Extreme.MathematicsVectorT
A vector whose
elements are to be set.
Return Value
Type:
VectorTA reference to the destination vector.
Exception | Condition |
---|
ArgumentException |
The length of destination is less than the length of this instance.
|
Reference