 | DoubleVectorToString(String) Method |
Returns a formatted string representation of this vector.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic string ToString(
string formatString
)
Public Function ToString (
formatString As String
) As String
public:
String^ ToString(
String^ formatString
)
member ToString :
formatString : string -> string
Parameters
- formatString String
- Format string used to format the vector values.
Return Value
String
A formatted string representation of the form
[ v1 v2 v3 ... ] where
each number is formatted using the specified formatString.
Remarks
Each number is formatted using Double.ToString(formatString) where formatString
is the passed parameter. For example, "C" formats each number as a
currency.
See Also