Skip to content

nreco/csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NReco.Csv

Ultra-fast C# CSV parser: implements stream reader and writer. NuGet Release

  • very fast: x2-x4 times faster than JoshClose's CSVHelper
  • memory efficient: uses only single circular buffer, no allocations in heap for CSV of any size
  • lightweight: bare csv parser with simple API
  • tolerant to not-fully correct CSV files, you can control max length of CSV file (useful for processing end-user CSV uploads)
  • can be used for stream processing of many-GB CSV files
  • supports all .NET versions: Framework 4.5+, .NET Core, NET6+

How to use

Parse CSV stream:

using (var streamRdr = new StreamReader(inputStream)) { var csvReader = new CsvReader(streamRdr, ","); while (csvReader.Read()) { for (int i=0; i<csvReader.FieldsCount; i++) { string val = csvReader[i]; } } } 

Generate CSV to stream:

 using (var streamWr = new StreamWriter(outputStream)) { var csvWriter = new CsvWriter(streamWr); // write line csvWriter.WriteField("Value with double quote\""); csvWriter.WriteField("And with\nnew line"); csvWriter.WriteField("Normal"); csvWriter.NextRecord(); } 

Who is using this?

NReco.Csv is in production use at SeekTable.com and PivotData microservice.

License

Copyright 2017-2024 Vitaliy Fedorchenko and contributors

Distributed under the MIT license

Releases

No releases published

Packages

 
 
 

Contributors

Languages