public CsvReader(CsvProfile profile, int bufferSize) { this.Profile = profile; BufferSize = bufferSize; }
public CsvReader(CsvProfile profile) : this(profile, 512) { }