Click or drag to resize

DataFrameToString(Boolean, Boolean, String, String, String, String) Method

Returns a formatted string representation of this data frame.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public string ToString(
	bool exportHeader,
	bool exportRowKeys,
	string delimiter,
	string numericFormat,
	string integerFormat,
	string dateTimeFormat
)

Parameters

exportHeader  Boolean
A boolean value indicated whether or not the returned string should include column headers.
exportRowKeys  Boolean
A boolean value indicated whether or not the returned string should include row keys.
delimiter  String
The column delimiter.
numericFormat  String
Numeric format such as "F3"
integerFormat  String
Integer format such as "C"
dateTimeFormat  String
DateTime format such as "MMM ddd d HH:mm yyyy"

Return Value

String
A formatted string representation of this data frame.
See Also