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

Utilities to read and write CSV files.
Afficher le fichier Open project: Vanaheimr/Styx

Méthodes publiques

Méthode 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 méthode

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

GetMultipleLines() public static méthode

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.
Résultat IEnumerable>