C# Class FlatFiles.DoubleColumn

Represents a column containing doubles.
Inheritance: ColumnDefinition
显示文件 Open project: jehugaleahsa/FlatFiles Class Usage Examples

Public Methods

Method Description
DoubleColumn ( string columnName ) : System

Initializes a new instance of an DoubleColumn.

Format ( object value ) : string

Formats the given object.

Parse ( string value ) : object

Parses the given value, returning a Double.

Method Details

DoubleColumn() public method

Initializes a new instance of an DoubleColumn.
public DoubleColumn ( string columnName ) : System
columnName string The name of the column.
return System

Format() public method

Formats the given object.
public Format ( object value ) : string
value object The object to format.
return string

Parse() public method

Parses the given value, returning a Double.
public Parse ( string value ) : object
value string The value to parse.
return object