C# 클래스 DataMigration.CsvParser

Csv parser. Wraps the LumenWorks.Framework.IO Csv reader, published at http://www.codeproject.com/Articles/9258/A-Fast-CSV-Reader.
상속: IParser
파일 보기 프로젝트 열기: scoutmedia/DataMigration

보호된 프로퍼티들

프로퍼티 타입 설명
delimiter char

공개 메소드들

메소드 설명
Dispose ( ) : void

Releases all resources used by the underlying csvReader object.

NextRow ( ) : IList

Returns the next row of data, and advances the CurrentRow counter.

Open ( string filePath ) : void

Open the file the specified Path. The caller is responsible for calling Dispose once Open() has been called.

보호된 메소드들

메소드 설명
GetDelimiter ( ) : void

Looks in Properties collection for specified delimiter.

메소드 상세

Dispose() 공개 메소드

Releases all resources used by the underlying csvReader object.
public Dispose ( ) : void
리턴 void

GetDelimiter() 보호된 메소드

Looks in Properties collection for specified delimiter.
protected GetDelimiter ( ) : void
리턴 void

NextRow() 공개 메소드

Returns the next row of data, and advances the CurrentRow counter.
public NextRow ( ) : IList
리턴 IList

Open() 공개 메소드

Open the file the specified Path. The caller is responsible for calling Dispose once Open() has been called.
public Open ( string filePath ) : void
filePath string File path.
리턴 void

프로퍼티 상세

delimiter 보호되어 있는 프로퍼티

protected char delimiter
리턴 char