Top "Csvhelper" questions

The CsvHelper library is a .NET library that allows for easy reading and writing of comma-separated values (CSV) files.

Could not load file or assembly 'System.Threading.Tasks.Extensions, Version=4.2.0.0

I recently installed CsvHelper (https://joshclose.github.io/CsvHelper/) when i try to use the library I get the following …

c# csvhelper assembly-binding-redirect assemblybinding
CsvHelper Ignore case for header names

I have some class public class Import { public DateTime Date { get; set; } public string Category { get; set; } } In csv file …

c# csvhelper
CsvHelper : How to detect the Delimiter from the given csv file

I am using CsvHelper to read/writer the data into Csv file. Now I want to parse the delimiter of …

csvhelper
Trouble with CSV-Helper not converting bool values

I'm starting to use CSV Helper - an excellent little helper for your daily work - great stuff! One item …

c# .net-4.0 csvhelper
How to handle empty column in parsing with CsvHelper?

I have a CSV file, I'm trying to parse it, But getting the below error on int datatype column.In …

c# csvhelper
CsvHelper changing how dates and times are output

I am using CsvHelper to write some CSV files and want to change the format of my dates and times …

c# .net csvhelper
CsvHelper parse csv and convert string to DateTime

I am working with CsvHelper and being able to parse csv file. My question is how can I parse the …

c# csv csvhelper
Fields 'workOrder' do not exist in the CSV file

I have a CSV file with several rows and each row has a work order number under column titled "W.…

c# csv csvhelper