CsvHelper
CsvHelper copied to clipboard
Library to help reading and writing CSV files
**Describe the bug** Nested objects list is not working for `GetRecords` error: Property 'System.String Id' is not defined for type 'System.Collections.Generic.List`1[csvHelperTest.Program+B]' (Parameter 'property') **To Reproduce** run this code: ``` using...
Hi I'm trying to read the csv, but as soon as I set `HasHeaderRecord = false`, then I get an empty table. _version:12.1.2_ ``` 1,one,yes,a 2,two,no,b ``` ``` using (var...
**Scenario** In my country multiple languages are used (de, fr, it, en). When it comes to importing csv generated on different systems, the delimiter might be a different one depending...
inspiration to get the bug fixed. Moved logic out of CsvParser.cs to make it easier to test #1955
issue #2016 CsvConfiguration parameter was not passed in the CsvReader constructor in [mapping by index](https://joshclose.github.io/CsvHelper/examples/configuration/class-maps/mapping-by-index/) docs example.
In the doc [Mapping by Index](https://joshclose.github.io/CsvHelper/examples/configuration/class-maps/mapping-by-index/) The CsvConfiguration was created but left out when creating `CsvReader` Here is the code in the given example: ```csharp using (var csv = new...
**Is your feature request related to a problem? Please describe.** Back in version 19, you could access the Reader property in the ReadingContext, and from that you could access the...
Hi Josh, I've started using your library today and am running into a problem. I have a CSV with lots of whitespace. I'm using MissingFieldFound and still getting an exception...
**Describe the bug** I output a file using the library. No problems. I try to read the same file to the same data structure. Program is stuck on GetRecordsAsync endlessly....
…ronized contexts. This should fix issue #1751. I believe the unmentioned detail in that thread is that they are running a windows forms or blazor context that runs in a...