C# 클래스 FlatFiles.Int64Column

Represents a column containing 64-bit integers.
상속: ColumnDefinition
파일 보기 프로젝트 열기: jehugaleahsa/FlatFiles 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Format() 공개 메소드

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

Int64Column() 공개 메소드

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

Parse() 공개 메소드

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