Click or drag to resize

DFColumnParse(ICollection, Boolean) Method

Parses a column from a collection.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DFColumn Parse(
	ICollection data,
	bool parse
)

Parameters

data  ICollection
A collection of column data.
parse  Boolean
A boolean value indicating whether to parse the column types, or treat everything as generic object data.

Return Value

DFColumn
If parse is true, returns a DFIntColumn, a DFNumericColumn, a DFBoolColumn or a DFStringColumn. If false, always returns a DFStringColumn.
See Also