C# Class FlatFiles.DoubleColumn

Represents a column containing doubles.
Inheritance: ColumnDefinition
Afficher le fichier Open project: jehugaleahsa/FlatFiles Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

Format() public méthode

Formats the given object.
public Format ( object value ) : string
value object The object to format.
Résultat string

Parse() public méthode

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