Method | Description | |
---|---|---|
Format ( string format, |
Converts a jagged or multidimensional array into a System.String representation.
|
|
Format ( string format, object arg, IFormatProvider formatProvider ) : string |
Converts the value of a specified object to an equivalent string representation using specified formatting information.
|
|
ParseJagged ( string str, IMatrixFormatProvider provider ) : double[][] |
Converts a matrix represented in a System.String into a jagged array.
|
|
ParseMultidimensional ( string str, IMatrixFormatProvider provider ) : ].double[ |
Converts a matrix represented in a System.String into a multi-dimensional array.
|
Method | Description | |
---|---|---|
handleOtherFormats ( string format, object arg, IFormatProvider culture ) : string |
Handles formatting for objects other than matrices.
|
|
parseOptions ( string format, string &newline, string &elementFormat ) : bool |
Parses a format string containing the format options for the matrix representation.
|
public static Format ( string format, |
||
format | string | |
matrix | ||
formatProvider | IMatrixFormatProvider | |
return | string |
public Format ( string format, object arg, IFormatProvider formatProvider ) : string | ||
format | string | A format string containing formatting specifications. |
arg | object | An object to format. |
formatProvider | IFormatProvider |
/// An |
return | string |
public static ParseJagged ( string str, IMatrixFormatProvider provider ) : double[][] | ||
str | string | |
provider | IMatrixFormatProvider | |
return | double[][] |
public static ParseMultidimensional ( string str, IMatrixFormatProvider provider ) : ].double[ | ||
str | string | |
provider | IMatrixFormatProvider | |
return | ].double[ |