Info
Version: | 4.5.1 |
Author(s): | Jonathan Wood |
Last Update: | Wednesday, March 13, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/SoftCircuits/CsvParser |
NuGet Url: | https://www.nuget.org/packages/SoftCircuits.CsvParser |
Install
Install-Package SoftCircuits.CsvParser
dotnet add package SoftCircuits.CsvParser
paket add SoftCircuits.CsvParser
SoftCircuits.CsvParser Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Includes basic classes to easily read and write CSV data, and also higher-level classes that automatically map class properties to CSV columns. The library correctly handles column values that contain embedded commas, quotes, other special characters, and even column values that span multiple lines.
CsvParser is very efficient. The object mapping classes runs up to four times faster than the popular CsvHelper library.
The CsvSettings class can be used to customize the library's behavior, including setting the column delimiter to another character (like to a tab, for example), change the quote character, customize how blank lines are handled, etc.