Click or drag to resize

DFColumnParse(DataColumn) Method

Parses the DataColumn into a DFColumn.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DFColumn Parse(
	DataColumn column
)

Parameters

column  DataColumn
A DataColumn.

Return Value

DFColumn
A new DFColumn.
Remarks
A DataColumn of type System.Int16, System.Int32 or System.Int64 will be parsed into a DFIntColumn, of type System.Single or System.Double into a DFNumericColumn, of type System.DateTime into a DFDateTimeColumn, of type System.Boolean into a DFBoolColumn, of type System.String into a DFStringColumn. Any other type will be made into a DFGenericColumn.
See Also