CsvHelper 2.0.0-beta1

This is a prerelease version of CsvHelper.
There is a newer version of this package available.
See the version list below for details.
dotnet add package CsvHelper --version 2.0.0-beta1
NuGet\Install-Package CsvHelper -Version 2.0.0-beta1
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="CsvHelper" Version="2.0.0-beta1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CsvHelper --version 2.0.0-beta1
#r "nuget: CsvHelper, 2.0.0-beta1"
#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 CsvHelper as a Cake Addin
#addin nuget:?package=CsvHelper&version=2.0.0-beta1&prerelease

// Install CsvHelper as a Cake Tool
#tool nuget:?package=CsvHelper&version=2.0.0-beta1&prerelease

A library for reading and writing CSV files. Extremely fast, flexible, and easy to use. Supports reading and writing of custom class objects.

Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net35-client is compatible.  net40 was computed.  net40-client is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Silverlight sl4 is compatible.  sl5 is compatible. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Store netcore was computed.  netcore45 is compatible.  netcore451 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (155)

Showing the top 5 popular GitHub repositories that depend on CsvHelper:

Repository Stars
QL-Win/QuickLook
Bring macOS “Quick Look” feature to Windows
restsharp/RestSharp
Simple REST and HTTP API Client for .NET
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
QuantConnect/Lean
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
Version Downloads Last updated
2.13.0 29,771 4/17/2015
2.12.0.2 1,735 4/15/2015
2.12.0.1 1,302 4/14/2015
2.12.0 1,350 4/11/2015
2.11.1.1 20,984 3/5/2015
2.11.0 9,476 2/17/2015
2.10.0 30,256 12/8/2014
2.9.1 143 12/8/2014
2.9.0 136 12/8/2014
2.8.4 13,050 11/14/2014
2.8.3 7,191 11/11/2014
2.8.2 15,330 10/14/2014
2.8.1 1,501 10/10/2014
2.8.0 5,041 10/2/2014
2.7.1 17,094 8/30/2014
2.7.0 27,570 6/19/2014
2.6.1 3,259 6/5/2014
2.6.0 7,101 5/14/2014
2.5.0 16,460 3/7/2014
2.4.1 6,384 2/11/2014
2.4.0 2,326 1/25/2014
2.3.0 3,110 12/17/2013
2.2.2 11,449 7/10/2013
2.2.1 294 7/4/2013
2.2.0 1,372 7/2/2013
2.1.1 424 6/21/2013
2.1.0 538 6/19/2013
2.0.1 184 6/14/2013
2.0.0 320 6/13/2013
2.0.0-beta2 77 6/7/2013
2.0.0-beta1 155 4/24/2013
1.17.0 4,641 3/13/2013
1.16.0 180 3/9/2013
1.15.0 1,517 3/3/2013
1.14.0 1,550 1/25/2013
1.13.0 2,334 12/18/2012
1.12.1 669 11/13/2012
1.12.0 99 11/10/2012
1.11.0 98 11/10/2012
1.10.0 115 11/3/2012
1.9.2 179 10/24/2012
1.9.1 82 10/24/2012
1.9.0 141 10/21/2012
1.8.0 473 9/15/2012
1.7.0 302 8/15/2012
1.6.0 221 8/2/2012
1.5.0 249 7/13/2012
1.4.0 1,124 4/13/2012
1.3.0 383 3/11/2012
1.2.0 335 2/10/2012
1.1.2 180 1/11/2012
1.1.1 86 1/7/2012
1.1.0 205 10/11/2011
1.0.0 93 9/10/2011
0.16.0 97 9/7/2011
0.15.0 84 7/9/2011
0.14.0 87 7/6/2011
0.13.0 159 2/15/2011
0.12.0 143 2/1/2011

Added Features:
-References mapping works for whole mapping tree, not just a single level.
-Auto mapping by property name is used if no map is specified.
-Multiple maps can be used for a configuration.
-Exceptions are no longer wrapped. More details are now available in Exception.Data["CsvHelper"].
-Config option for reading and writing from properties that have private get and set accessors.
-Configuration.CultureInfo settings instead of Configuration.UseInvariantCulture
-CsvConfigurationException if no mappings are found.
-Removed attribute mapping.
Bugs Fixed:
-Parser can read data with \0 in them.