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



format
A format string that will be used to convert all vector elements.
Converts this instance of Vector to a formatted string specifying a format string, and using the default values for separator, left and right borders, and end of line characters.

Syntax

Visual Basic (Declaration) 
Public Overloads Function ToString( _
   ByVal format As String _
) As String
Visual Basic (Usage)Copy Code
Dim instance As Vector
Dim format As String
Dim value As String
 
value = instance.ToString(format)
C# 
public string ToString( 
   string format
)
C++/CLI 
public:
String^ ToString( 
   String^ format
) 

Parameters

format
A format string that will be used to convert all vector elements.

Return Value

A formatted string containing all vector elements.

Remarks

A space character is used as a separator of vector elements. The left and right 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