C# Class FlatFiles.IgnoredColumn

Represents a column that should be ignored when reading a document and used as a placeholder when writing a document.
Inheritance: ColumnDefinition
Afficher le fichier Open project: jehugaleahsa/FlatFiles

Méthodes publiques

Méthode Description
Format ( object value ) : string

Returns null so nothing is written to the document.

IgnoredColumn ( ) : System

Initializes a new IgnoredColumn.

IgnoredColumn ( string columnName ) : System

Initializes a new IgnoredColumn with a header name.

Parse ( string value ) : object

Ignores the values that was parsed from the document.

Method Details

Format() public méthode

Returns null so nothing is written to the document.
public Format ( object value ) : string
value object The value that needs written to the document.
Résultat string

IgnoredColumn() public méthode

Initializes a new IgnoredColumn.
public IgnoredColumn ( ) : System
Résultat System

IgnoredColumn() public méthode

Initializes a new IgnoredColumn with a header name.
public IgnoredColumn ( string columnName ) : System
columnName string
Résultat System

Parse() public méthode

Ignores the values that was parsed from the document.
public Parse ( string value ) : object
value string The value that was parsed from the document.
Résultat object