C# 클래스 FlatFiles.FixedLengthComplexColumn

Represents a string column that has contains multiple, nested values
상속: ColumnDefinition
파일 보기 프로젝트 열기: jehugaleahsa/FlatFiles

공개 메소드들

메소드 설명
FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema ) : System

Initializes a new FixedLengthComplexColumn with the given schema and default options.

FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema, FlatFiles.FixedLengthOptions options ) : System

Initializes a new FixedLengthComplexColumn with the given schema and options.

Format ( object value ) : string

Formats the given object array into an embedded record.

Parse ( string value ) : object

Extracts a single record from the embedded data.

메소드 상세

FixedLengthComplexColumn() 공개 메소드

Initializes a new FixedLengthComplexColumn with the given schema and default options.
public FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema ) : System
columnName string The name of the column.
schema FixedLengthSchema The schema of the data embedded in the column.
리턴 System

FixedLengthComplexColumn() 공개 메소드

Initializes a new FixedLengthComplexColumn with the given schema and options.
public FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema, FlatFiles.FixedLengthOptions options ) : System
columnName string The name of the column.
schema FixedLengthSchema The schema of the data embedded in the column.
options FlatFiles.FixedLengthOptions The options to use when parsing the embedded data.
리턴 System

Format() 공개 메소드

Formats the given object array into an embedded record.
public Format ( object value ) : string
value object The object array containing the values of the embedded record.
리턴 string

Parse() 공개 메소드

Extracts a single record from the embedded data.
public Parse ( string value ) : object
value string The value containing the embedded data.
리턴 object