C# Class DataMigration.CsvParser

Csv parser. Wraps the LumenWorks.Framework.IO Csv reader, published at http://www.codeproject.com/Articles/9258/A-Fast-CSV-Reader.
Inheritance: IParser
Afficher le fichier Open project: scoutmedia/DataMigration

Protected Properties

Свойство Type Description
delimiter char

Méthodes publiques

Méthode Description
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.

Méthodes protégées

Méthode Description
GetDelimiter ( ) : void

Looks in Properties collection for specified delimiter.

Method Details

Dispose() public méthode

Releases all resources used by the underlying csvReader object.
public Dispose ( ) : void
Résultat void

GetDelimiter() protected méthode

Looks in Properties collection for specified delimiter.
protected GetDelimiter ( ) : void
Résultat void

NextRow() public méthode

Returns the next row of data, and advances the CurrentRow counter.
public NextRow ( ) : IList
Résultat IList

Open() public méthode

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

Property Details

delimiter protected_oe property

protected char delimiter
Résultat char