C# Class FlatFiles.BooleanColumn

Represents a column containing boolean values.
Inheritance: ColumnDefinition
Afficher le fichier Open project: jehugaleahsa/FlatFiles

Méthodes publiques

Méthode Description
BooleanColumn ( string columnName ) : System

Initializes a new instance of a BooleanColumn.

Format ( object value ) : string

Formats the given object.

Parse ( string value ) : object

Parses the given value into its equivilent boolean value.

Method Details

BooleanColumn() public méthode

Initializes a new instance of a BooleanColumn.
public BooleanColumn ( 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 into its equivilent boolean value.
public Parse ( string value ) : object
value string The value to parse.
Résultat object