Ejemplo n.º 1
0
 public CsvSerializer(CsvObjectConfiguration configuration)
 {
     this.configuration      = configuration;
     this.numberOfRowsToSkip = this.configuration.FirstRow < 1 ? 0 : this.configuration.FirstRow;
 }
Ejemplo n.º 2
0
 public CsvTableReader(CsvObjectConfiguration configuration)
 {
     this.Configuration = configuration;
     this.rows          = new Queue <string[]>();
 }