go.encoding.csv 1.23.12.3

dotnet add package go.encoding.csv --version 1.23.12.3
                    
NuGet\Install-Package go.encoding.csv -Version 1.23.12.3
                    
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="go.encoding.csv" Version="1.23.12.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="go.encoding.csv" Version="1.23.12.3" />
                    
Directory.Packages.props
<PackageReference Include="go.encoding.csv" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add go.encoding.csv --version 1.23.12.3
                    
#r "nuget: go.encoding.csv, 1.23.12.3"
                    
#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.
#:package go.encoding.csv@1.23.12.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=go.encoding.csv&version=1.23.12.3
                    
Install as a Cake Addin
#tool nuget:?package=go.encoding.csv&version=1.23.12.3
                    
Install as a Cake Tool

go.encoding.csv

C# package converted from the Go standard library by go2cs.

Tests Docs
Source Source

Package csv reads and writes comma-separated values (CSV) files. There are many kinds of CSV files; this package supports the format described in RFC 4180, except that [Writer] uses LF instead of CRLF as newline character by default.

A csv file contains zero or more records of one or more fields per record. Each record is separated by the newline character. The final record may optionally be followed by a newline character.

field1,field2,field3

White space is considered part of a field.

Carriage returns before newline characters are silently removed.

Blank lines are ignored. A line with only whitespace characters (excluding the ending newline character) is not considered a blank line.

Fields which start and stop with the quote character " are called quoted-fields. The beginning and ending quote are not part of the field.

The source:

normal string,"quoted-field"

results in the fields

{`normal string`, `quoted-field`}

Within a quoted-field a quote character followed by a second quote character is considered a single quote.

"the ""word"" is true","a ""quoted-field"""

results in

{`the "word" is true`, `a "quoted-field"`}

Newlines and commas may be included in a quoted-field

"Multi-line
field","comma is ,"

results in

{`Multi-line
field`, `comma is ,`}

Copyright 2009 The Go Authors. All rights reserved. This C# package is converted from Go standard library source; use of that source is governed by a BSD-style license that can be found in the LICENSE file. The go2cs conversion itself is distributed under the MIT license.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.23.12.3 91 9/8/2026
1.23.12.2 89 8/29/2026
1.23.12.1 96 8/26/2026
1.23.1.7 95 8/23/2026
1.23.1.6 96 8/11/2026
1.23.1.5 101 8/9/2026
1.23.1.4 109 8/8/2026
1.23.1.3 97 8/4/2026
1.23.1.2 113 7/27/2026
1.23.1.1 123 7/14/2026