Top "Csvhelper" questions

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

Failed to write large amount of data to stream

When I'm trying to write very large amount of data (list with 300 000 rows and more) to memory stream using CsvHelper, …

c# .net memory-management csvhelper
Adding detectable Nullable values to CsvHelper

I was wondering if CsvHelper by Josh Close has anything in the configuration I am missing to translate values to …

string nullable csvhelper
CsvHelper getting just the headers row

I am trying to read an uploaded CSV file and before doing anything with the data I need to check …

csvhelper
CsvHelper: No members are mapped for type

I use CsvHelper 4.0.3. I have a nested class defined like this: private class CsvLine { public string Solution; public string Project; …

c# csvhelper
What is the best way to get the list of column names using CsvHelper?

I am trying to use CsvHelper for a project. I went through the documentation but I couldn't find a way …

c# csv parsing csvhelper
Cannot access a disposed object. Object name: System.Net.Sockets.NetworkStream

I am using CsvHelper. Here I am trying to download a csv file from ftp and write to a class. …

c# ftpwebrequest csvhelper
How we can write delimiter like sep=, using CsvHelper library?

we're using CsvHelper library to export some information from our application, our clients normally use Excel to see the results (…

c# csvhelper
Why can't I convert from 'System.IO.StreamWriter' to 'CsvHelper.ISerializer'?

Trying to write the contents of people to a CSVfile and then export it, however I am getting a build …

c# .net-core csvhelper
CsvHelper ignore not working

I am using CsvHelper to generate a csv file based on a List, but I would like to avoid writing …

c# .net csvhelper
CsvHelper set default custom TypeConverter

With CsvHelper, when I want a custom parser (for example, I want a MyBooleanConverter with the input string is "f" …

c# csvhelper