.NET Matrix Library
CVector Constructor(CVector)
See Also  Send Feedback



vector
The CVector object whose elements will by copied into the newly created vector.
Creates a new instance of the CVector class, copying the content of an existing vector.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal vector As CVector _
)
Visual Basic (Usage)Copy Code
Dim vector As CVector
 
Dim instance As New CVector(vector)
C# 
public CVector( 
   CVector vector
)
C++/CLI 
public:
CVector( 
   CVector^ vector
)

Parameters

vector
The CVector object whose elements will by copied into the newly created vector.

Remarks

This is the copy constructor of the CVector class.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library