SoftCircuits.CsvParser 2.1.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package SoftCircuits.CsvParser --version 2.1.2
NuGet\Install-Package SoftCircuits.CsvParser -Version 2.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SoftCircuits.CsvParser" Version="2.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SoftCircuits.CsvParser --version 2.1.2
#r "nuget: SoftCircuits.CsvParser, 2.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SoftCircuits.CsvParser as a Cake Addin
#addin nuget:?package=SoftCircuits.CsvParser&version=2.1.2

// Install SoftCircuits.CsvParser as a Cake Tool
#tool nuget:?package=SoftCircuits.CsvParser&version=2.1.2

CsvParser is a .NET library that makes it easy to work with comma-separated-values (CSV) files (and files with other delimiters). It includes basic classes to read and write CSV columns, and also higher level classes that can automatically map CSV columns to your class properties. The library correctly handles column values that contain embedded commas, quotes or other special characters. It even supports column values that span multiple lines. CsvParser is very efficient and is designed to handle large data files without loading everything into memory. CsvParser runs about 4 times faster than CsvHelper.

In addition, the library's behavior can be customized. For example, you can change the column delimiter to another character (like the tab character, for example), change the quote character, customize how blank lines are handled, etc.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SoftCircuits.CsvParser:

Package Downloads
SoftCircuits.WebScraper The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

.NET library to scrape content from the Internet. Use it to extract information from Web pages in your own application. Extracted data is written to a CSV file. Supports paging and can cycle through all combinations of any number of replacement tags. Now targets .NET Standard 2.0 or .NET 5.0, and supports nullable reference types.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on SoftCircuits.CsvParser:

Repository Stars
leandromoh/RecordParser
Zero Allocation Writer/Reader Parser for .NET Core
Version Downloads Last updated
4.5.1 58 3/13/2024
4.5.0 55 3/13/2024
4.1.0 4,252 3/31/2023
4.0.0 925 3/15/2023
3.5.1 8,987 12/22/2021
3.5.0 344 12/12/2021
3.0.1 682 10/1/2021
3.0.0 8,412 2/19/2021
2.4.3 4,007 1/14/2021
2.4.2 743 11/27/2020
2.4.1 455 10/15/2020
2.4.0 464 9/19/2020
2.3.0 510 9/13/2020
2.2.0 2,238 6/15/2020
2.1.8 429 6/15/2020
2.1.7 501 5/31/2020
2.1.6 462 5/29/2020
2.1.5 452 5/29/2020
2.1.4 430 5/29/2020
2.1.3 451 5/26/2020
2.1.2 1,002 4/19/2020
2.1.1 431 4/15/2020
2.1.0 458 3/13/2020
2.0.11 538 2/15/2020
2.0.10 429 2/14/2020
2.0.9 533 2/11/2020
2.0.8 476 1/20/2020
2.0.7 516 8/2/2019
2.0.6 479 8/2/2019
2.0.5 521 8/1/2019
2.0.4 491 7/31/2019
2.0.3 487 7/31/2019
2.0.2 498 7/30/2019
2.0.1 497 7/29/2019
2.0.0 486 7/28/2019
1.1.0 566 7/10/2019
1.0.0 1,525 7/9/2019

Minor tweaks and optimizations; Improved XML comments; Updated speed tests project.