Vector<T>.ShallowCopy Method

Makes a shallow copy of this vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> ShallowCopy()

Return Value

Vector<T>
A reference to the new Vector<T>.

Remarks

A shallow copy does not copy the elements of the vector into a new array. Use the Clone() method for this purpose.

See Also