SoftCircuits.CsvParser 1.1.0

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 1.1.0
NuGet\Install-Package SoftCircuits.CsvParser -Version 1.1.0
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="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SoftCircuits.CsvParser --version 1.1.0
#r "nuget: SoftCircuits.CsvParser, 1.1.0"
#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=1.1.0

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

CsvParser makes it easy to work with comma-separated-values (CSV) files. It supports column values that contain commas, quotes or other special characters. It even supports column values that span multiple lines. In addition, you can optionally change settings such as the column delimiter character, the quote character or how blank lines are handled.

Use the CsvWriter class to write a CSV file. Use the CsvReader class to read a CSV file.

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 177 3/13/2024
4.5.0 78 3/13/2024
4.1.0 4,624 3/31/2023
4.0.0 973 3/15/2023
3.5.1 9,223 12/22/2021
3.5.0 344 12/12/2021
3.0.1 682 10/1/2021
3.0.0 8,518 2/19/2021
2.4.3 4,260 1/14/2021
2.4.2 743 11/27/2020
2.4.1 456 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,007 4/19/2020
2.1.1 433 4/15/2020
2.1.0 460 3/13/2020
2.0.11 544 2/15/2020
2.0.10 431 2/14/2020
2.0.9 535 2/11/2020
2.0.8 479 1/20/2020
2.0.7 518 8/2/2019
2.0.6 481 8/2/2019
2.0.5 527 8/1/2019
2.0.4 493 7/31/2019
2.0.3 489 7/31/2019
2.0.2 500 7/30/2019
2.0.1 499 7/29/2019
2.0.0 488 7/28/2019
1.1.0 567 7/10/2019
1.0.0 1,530 7/9/2019

CsvReader constructors now allow you to specify the character encoding and/or the byte order detection option; CsvWriter constructors now allow you to specify the character encoding; Optimized CsvReader.ReadRow() method to minimize memory allocations; Added additional methods exposing underlying stream functionality; BREAKING CHANGE: CsvReader.ReadRow() argument now passed by reference