David Specht

Results 16 comments of David Specht

@A9G-Data-Droid I don't think you would want it to do that automatically. It might work for your situation, but if someone else has a situation where they are getting the...

I'm not sure what page or link you are referencing. The getting started page has much of what you might need to learn how to use the library. https://joshclose.github.io/CsvHelper/getting-started/

The only way to set those values is to pass a `CsvConfiguration` object to the `CsvWriter` constructor. Changes were made in v20 to make `CsvConfiguration` `readonly`. https://joshclose.github.io/CsvHelper/change-log/#section-52 > Changed CsvConfiguration...

`CsvHelper` is expecting an object with members to map rather than an array of strings. I believe the only way to do it would be to have `CsvHelper` write out...

Good to know! You do still need the `csv.NextRecord()`.

Are you looking for something like dynamic mapping of a class? https://stackoverflow.com/a/69921900/2355006