Josh Close

Results 279 comments of Josh Close

What were you doing before with `ExpandoObject`?

If you're putting it into a Dictionary, you can just do this instead. ```cs var records = csv.GetRecords().OfType(); ``` That will give you an `IEnumerable`.

Can you give an example? You should be able to write with a `DynamicObject` and anything that implements `IDynamicMetaObjectProvider`

This is because the delegate to create the objects is cached with the settings for the original map. I may need to clear those when a mapping for a type...

What issues are you having? CsvHelper knows nothing about the encoding you're using. You pass in a `TextReader` which is where encoding is handled. If you're using a `StreamReader`, you...

Do you mean a different `CultureInfo`? The delimiter is token from `CultureInfo.TextInfo.ListSeparator`. My guess is it's not finding a delimiter and is using that large text because of that. This...

Can you write a full example that shows the problem? Meaning, it contains the input data. Also, we need to see the output in CSV text format, not Excel.

I rewrote the parser from scratch and will be releasing it soon. It works completely different. I'll leave this hear until then though.

I wrote a new parser that I'm working on integrating in. I don't know what the configuration will look like after that. I'm going to hold off on this until...