C# Класс org.GraphDefined.Vanaheimr.Styx.CSV

Utilities to read and write CSV files.
Показать файл Открыть проект

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

Метод Описание
GetLines ( this StreamReader ) : IEnumerable

Yields one line from the given stream reader.

GetMultipleLines ( this StreamReader, Int32 NumberOfLines ) : IEnumerable>

Yields multiple lines from the given stream reader.

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

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

Yields one line from the given stream reader.
public static GetLines ( this StreamReader ) : IEnumerable
StreamReader this The stream to read the lines from.
Результат IEnumerable

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

Yields multiple lines from the given stream reader.
public static GetMultipleLines ( this StreamReader, Int32 NumberOfLines ) : IEnumerable>
StreamReader this The stream to read the lines from.
NumberOfLines System.Int32 The number of lines to read at once.
Результат IEnumerable>