C# Class FlatFiles.StringColumn

Represents a column containing strings.
Inheritance: ColumnDefinition
Mostra file Open project: jehugaleahsa/FlatFiles Class Usage Examples

Public Methods

Method Description
Format ( object value ) : string

Formats the given object.

Parse ( string value ) : object

Returns the given value trimmed.

StringColumn ( string columnName ) : System

Initializes a new instance of a StringColumnDefinition.

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

Returns the given value trimmed.
public Parse ( string value ) : object
value string The value to trim.
return object

StringColumn() public method

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