You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Importing a csv where dates were written as "d/M/yyyy" I am getting the exception: LINQtoCSV.WrongDataFormatException: Value "31/12/2019" in line 2 has the wrong format...
It would be nice if the 'OutputFormat' data could be used when importing date fields, not just writing. Example:
[CsvColumn(Name = "Date", FieldIndex = 13, OutputFormat = "d/M/yyyy")]
public DateTime Date { get; set; }
The text was updated successfully, but these errors were encountered:
When Importing a csv where dates were written as "d/M/yyyy" I am getting the exception:
LINQtoCSV.WrongDataFormatException: Value "31/12/2019" in line 2 has the wrong format...
It would be nice if the 'OutputFormat' data could be used when importing date fields, not just writing. Example:
The text was updated successfully, but these errors were encountered: