|  | DFColumnParse(ICollection, Boolean) Method | 
            Parses a column from a collection.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DFColumn Parse(
	ICollection data,
	bool parse
)
Public Shared Function Parse ( 
	data As ICollection,
	parse As Boolean
) As DFColumn
public:
static DFColumn^ Parse(
	ICollection^ data, 
	bool parse
)
static member Parse : 
        data : ICollection * 
        parse : bool -> DFColumn 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
DFColumnIf 
parse is 
true, returns a DFIntColumn, a DFNumericColumn,
            a DFBoolColumn or a DFStringColumn. If 
false, always returns a 
            DFStringColumn.
 See Also
See Also