C# Класс FlatFiles.FixedLengthComplexColumn

Represents a string column that has contains multiple, nested values
Наследование: ColumnDefinition
Показать файл Открыть проект

Открытые методы

Метод Описание
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