C# Class FlatFiles.SingleColumn

Represents a column containing singles.
Inheritance: ColumnDefinition
ファイルを表示 Open project: jehugaleahsa/FlatFiles

Public Methods

Method Description
Format ( object value ) : string

Formats the given object.

Parse ( string value ) : object

Parses the given value, returning a Single.

SingleColumn ( string columnName ) : System

Initializes a new instance of an SingleColumn.

Method Details

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 Single.
public Parse ( string value ) : object
value string The value to parse.
return object

SingleColumn() public method

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