Josh Close

Results 279 comments of Josh Close

Ha. I completely forgot about the converters needing a `TryParse` overload that takes in `Span`. Oops.

Maybe in the case of older frameworks the converters can do a `ToString`.

When I get some time I'll play around with this idea and see whether I want the parser to return only `Span` or have another method. I see the parser...

> As a developer Do you write a lot of agile stories? lol You shouldn't be getting out of memory issues. There is something wrong there. There is an internal...

You can pass a `DataTable` into the `CsvDataReader` constructor. You could use that to generate a proper `DataTable`, then pass that to `CsvDataReader` to read in. The types should be...

You can't use `WriteRecords`, `WriteRecord`, `GetRecords` or `GetRecord` because they use `System.Linq.Expressions`, which iOS doesn't allow. You'll need to loop the records and do `csv.WriteField(obj.Property)`. It looks like there is...

Looks like dotnet might just do it for you. https://stackoverflow.com/a/42033899/68499 Are you using the netstandard version of CsvHelper?

There are already `[Name(string name)]` and `[Name(params string[])]` attributes to do this. You should still supply and `Index` because the order of the properties returned from `Type.GetProperties()` may not be...

When doing it yourself it's not being sorted by the indexes. Here is an example where it's sorting them also. ```cs void Main() { var records = new List {...