C# 클래스 FlatFiles.ColumnDefinition

Defines a column that is part of a record schema.
상속: IColumnDefinition
파일 보기 프로젝트 열기: jehugaleahsa/FlatFiles 1 사용 예제들

공개 메소드들

메소드 설명
Format ( object value ) : string

Formats the given object.

Parse ( string value ) : object

Parses the given value and returns the parsed object.

보호된 메소드들

메소드 설명
ColumnDefinition ( string columnName ) : System

Initializes a new instance of a ColumnDefinition.

TrimValue ( string value ) : string

Removes any leading or trailing whitespace from the value.

비공개 메소드들

메소드 설명
ColumnDefinition ( string columnName, bool isIgnored ) : System

Initializes a new instance of a ColumnDefinition.

메소드 상세

ColumnDefinition() 보호된 메소드

Initializes a new instance of a ColumnDefinition.
protected ColumnDefinition ( string columnName ) : System
columnName string The name of the column to define.
리턴 System

Format() 공개 추상적인 메소드

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

Parse() 공개 추상적인 메소드

Parses the given value and returns the parsed object.
public abstract Parse ( string value ) : object
value string The value to parse.
리턴 object

TrimValue() 보호된 메소드

Removes any leading or trailing whitespace from the value.
protected TrimValue ( string value ) : string
value string The value to trim.
리턴 string