C# Class FlatFiles.Int64Column

Represents a column containing 64-bit integers.
Inheritance: ColumnDefinition
Afficher le fichier Open project: jehugaleahsa/FlatFiles Class Usage Examples

Méthodes publiques

Méthode Description
Format ( object value ) : string

Formats the given object.

Int64Column ( string columnName ) : System

Initializes a new instance of an Int64Column.

Parse ( string value ) : object

Parses the given value, returning an Int64.

Method Details

Format() public méthode

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

Int64Column() public méthode

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

Parse() public méthode

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