C# Class FlatFiles.Int32Column

Represents a column containing 32-bit integers.
Inheritance: ColumnDefinition
ファイルを表示 Open project: jehugaleahsa/FlatFiles

Public Methods

Method Description
Format ( object value ) : string

Formats the given object.

Int32Column ( string columnName ) : System

Initializes a new instance of an Int32Column.

Parse ( string value ) : object

Parses the given value, returning an Int32.

Method Details

Format() public method

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

Int32Column() public method

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

Parse() public method

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