C# 클래스 org.GraphDefined.Vanaheimr.Styx.CSV

Utilities to read and write CSV files.
파일 보기 프로젝트 열기: Vanaheimr/Styx

공개 메소드들

메소드 설명
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>