C# 클래스 FlatFiles.IgnoredColumn

Represents a column that should be ignored when reading a document and used as a placeholder when writing a document.
상속: ColumnDefinition
파일 보기 프로젝트 열기: jehugaleahsa/FlatFiles

공개 메소드들

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

Returns null so nothing is written to the document.

IgnoredColumn ( ) : System

Initializes a new IgnoredColumn.

IgnoredColumn ( string columnName ) : System

Initializes a new IgnoredColumn with a header name.

Parse ( string value ) : object

Ignores the values that was parsed from the document.

메소드 상세

Format() 공개 메소드

Returns null so nothing is written to the document.
public Format ( object value ) : string
value object The value that needs written to the document.
리턴 string

IgnoredColumn() 공개 메소드

Initializes a new IgnoredColumn.
public IgnoredColumn ( ) : System
리턴 System

IgnoredColumn() 공개 메소드

Initializes a new IgnoredColumn with a header name.
public IgnoredColumn ( string columnName ) : System
columnName string
리턴 System

Parse() 공개 메소드

Ignores the values that was parsed from the document.
public Parse ( string value ) : object
value string The value that was parsed from the document.
리턴 object