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



provider

An IFormatProvider that supplies culture-specific formatting information.

format
A format string that will be used to convert all matrix elements.
separator
A string that will be used to separate matrix elements.
leftBorder
A string that will be added at the beginning of each matrix row.
rightBorder
A string that will be added at the end of each matrix row.
endVector
A string that will be added at the end of each matrix row.
Converts this instance of Vector to a formatted string specifying culture-specific format information, a format string, a separator, left and right borders and end of line characters.

Syntax

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

Parameters

provider

An IFormatProvider that supplies culture-specific formatting information.

format
A format string that will be used to convert all matrix elements.
separator
A string that will be used to separate matrix elements.
leftBorder
A string that will be added at the beginning of each matrix row.
rightBorder
A string that will be added at the end of each matrix row.
endVector
A string that will be added at the end of each matrix row.

Requirements

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

See Also

.NET Matrix Library