-
I have the following property set in the class that is being used to define the records being written.
`[Index(6), Name("ReceivedDate"), Format("d")]`
`public string ReceivedByDate { get; set; }`
T…
-
Support for reading and writing excel documents (instead of csv files).
Suggestion as utility extension.
-
As we discussed on gitter - could we consider a way to only require those properties that are used by the `CsvReader`/`CsvWriter` internals as part of the `ICsvParser`/`ICsvSerializer` interfaces?
Ex…
-
Hi. I'm facing issues when i'm getting more than one tweet. The maximum number of tweets that i can get is 500 and it tooks like 5 hours to do that. Is there something wrong with my code? How can I ge…
-
Are there plans to add outputting csv files as well?
-
I get no exceptions when running in debug mode, but when I look at the pull out in Visual Studio I can see a random:
`csv.CurrentRecord 'csv.CurrentRecord' threw an exception of type 'CsvHelper.Csv…
-
Hi there.
I've been writing DataTable data to a CSV using your Nuget package successfully for some weeks, however, I've found an issue for one DataTable whereby my program executes and completes wi…
-
Or is there the examples?
-
Using this code:
```
public class BaseClass
{
public string A { get; set; }
}
public class ChildClass : BaseClass
{
public str…
-
I have done like #643 and created an typeconverter, the idea here is that I don't want the default value in the csv file if the enum have no value.
```
public enum MyType
{
Unknown = 0,
…