C# Class FlatFiles.Int64Column

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

Public Methods

Method 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 method

Formats the given object.
public Format ( object value ) : string
value object The object to format.
return string

Int64Column() public method

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

Parse() public method

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