David Specht
David Specht
I think maybe the issue is that Yana would like to make sure the header names are all there __and__ they are in the correct order. Right now you can...
You need to replace `new CsvReader(reader, CultureInfo.InvarientCulture)` with `new CsvReader(reader, config)`.
I believe you need to remove ```csharp while(!streamReader.EndOfStream()) { var line = streamReader.ReadLineAsync(); ``` `CsvReader` is trying to read the stream, but you have already read the first line with...
I believe this is already possible. https://github.com/JoshClose/CsvHelper/issues/1213
Adding an index to the map of `Videos`, which has a start and end index, should work. ```csharp public sealed class UserProductCsvMap : ClassMap { public UserProductCsvMap() { Map(m =>...
This is an issue with how `CsvReader.GetRecords()` works. https://joshclose.github.io/CsvHelper/getting-started/ > The `GetRecords` method will return an `IEnumerable` that will `yield` records. If you take a look at the internal `private...
Can you provide an example of code that is not working for you. This works for me and gives me the expected result of `Foo.Name = "Dopel, France, Paris"` ```csharp...
It looks like you are using `CsvMode.Escape`. There isn't a lot of documentation on exactly what that does, but I believe it was created to help out with those situations...
There was a breaking change with [CsvHelper 20.0.0](https://joshclose.github.io/CsvHelper/change-log/#section-39) > 20.0.0 Features Changed CsvConfiguration to a read only record to eliminate threading issues. You need to pass a `CsvConfiguration` to `CsvWriter`...
Unfortunately, you are not able to use nested lists of objects. CSV does not lend itself to flattening lists of objects. @LasVegasIs example is _way_ too simple. It gets much...