Knowledge.ToString()

Tag: csvhelper

  • CsvHelper – Cannot write to a closed TextWriter.

    If you are using CsvHelper and get the error “Cannot write to a closed TextWriter”, here is a solution. You are trying to reuse the same underlying stream to write using CsvWriter Instead, you don’t want to close the underlying stream so change your code to “true” parameter will leave the underlying stream open.

    |