Beispiel #1
0
 /// <summary>
 /// Private constructor as base for other constructors
 /// </summary>
 private CsvReader()
 {
     _buffer    = new char[_bufferSize];
     _csvParser = new CsvParser(ThrowException);
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CsvLineParser"/> class.
 /// </summary>
 public CsvLineParser()
     : base()
 {
     _csvParser = new CsvParser(ThrowException);
 }