C# Класс ExoModel.ETL.DelimitedFile

Reads and writes sets of delimited files representing hierarchially related tabular data.
Показать файл Открыть проект

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

Метод Описание
Read ( ) : ITable

Reads an ExcelFile from the specified stream as an ITable instance.

Read ( char delimiter = ',', char qualifier = '"' ) : ITable

Reads an ExcelFile from the specified stream as an ITable instance.

Write ( ITable table, Stream file ) : void

Writes an ITable instance as an ExcelFile to the specified stream.

Приватные методы

Метод Описание
ReadChildren ( Table parent, FileStream files, string path, char delimiter, char qualifier ) : void

Recursively reads child tables to build the table graph.

Описание методов

Read() публичный статический Метод

Reads an ExcelFile from the specified stream as an ITable instance.
public static Read ( ) : ITable
Результат ITable

Read() публичный статический Метод

Reads an ExcelFile from the specified stream as an ITable instance.
public static Read ( char delimiter = ',', char qualifier = '"' ) : ITable
delimiter char
qualifier char
Результат ITable

Write() публичный статический Метод

Writes an ITable instance as an ExcelFile to the specified stream.
public static Write ( ITable table, Stream file ) : void
table ITable
file Stream
Результат void