.NET Matrix Library
ToString() Method
See Also  Send Feedback



Converts this instance of CVector to a formatted string using the default values for format string, separator, left and right borders, and end of line characters.

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides Function ToString() As String
Visual Basic (Usage)Copy Code
Dim instance As CVector
Dim value As String
 
value = instance.ToString()
C# 
public override string ToString()
C++/CLI 
public:
String^ ToString(); override 

Return Value

A formatted string containing all vector elements.

Remarks

The "F3" format string is used to format each vector element. A space character is used as a separator of vector elements. The right and left borders are set to "| " and " |" strings respectively. The new line character "\n" is added at the end of the string.

Requirements

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

See Also

.NET Matrix Library