C# Class org.GraphDefined.Vanaheimr.Styx.CSV

Utilities to read and write CSV files.
Exibir arquivo Open project: Vanaheimr/Styx

Public Methods

Method Description
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.

Method Details

GetLines() public static method

Yields one line from the given stream reader.
public static GetLines ( this StreamReader ) : IEnumerable
StreamReader this The stream to read the lines from.
return IEnumerable

GetMultipleLines() public static method

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.
return IEnumerable>