DevToys.PocoCsv.Core 1.3.91

There is a newer version of this package available.
See the version list below for details.
dotnet add package DevToys.PocoCsv.Core --version 1.3.91
                    
NuGet\Install-Package DevToys.PocoCsv.Core -Version 1.3.91
                    
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="DevToys.PocoCsv.Core" Version="1.3.91" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevToys.PocoCsv.Core" Version="1.3.91" />
                    
Directory.Packages.props
<PackageReference Include="DevToys.PocoCsv.Core" />
                    
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 DevToys.PocoCsv.Core --version 1.3.91
                    
#r "nuget: DevToys.PocoCsv.Core, 1.3.91"
                    
#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.
#addin nuget:?package=DevToys.PocoCsv.Core&version=1.3.91
                    
Install DevToys.PocoCsv.Core as a Cake Addin
#tool nuget:?package=DevToys.PocoCsv.Core&version=1.3.91
                    
Install DevToys.PocoCsv.Core as a Cake Tool

DevToys.PocoCsv.Core

DevToys.PocoCsv.Core is a class library to read and write to Csv fast. It contains CsvStreamReader, CsvStreamWriter and Serialization classes CsvReader<T> and CsvWriter<T>.

  • Read/write serialize/deserialize data to and from Csv fast.
  • Use Linq to query large CSV files with CsvReader<T>.ReadAsEnumerable().
  • Use CsvWriter<T>.Write() to write large data tables to Csv.
  • Retrieve schema for a csv file with CsvUtils.GetCsvSchema() which can be used to create a poco object.

Three flavors for reading and writing CSV files:

  1. Stream
  2. <T> Serialize / Deserialize to T
  3. dynamic. Use dynamic to Read or Write CSV, this is slightly slower then <T>

CsvStreamReader

    string file = "C:\Temp\data.csv";
    using (CsvStreamReader _reader = new CsvStreamReader(file))
    {
        _reader.Separator = ',';
        while (!_reader.EndOfCsvStream)
        {
            List<string> _values = _reader.ReadCsvLine().ToList();
        }
    }

CsvStreamWriter

    string file = @"D:\Temp\test.csv";
    using (CsvStreamWriter _writer = new CsvStreamWriter(file))
    {
        var _line = new string[] { "Row 1", "Row A,A", "Row 3", "Row B" };
        _writer.WriteCsvLine(_line);
    }

CsvReader<T>

    public class Data
    {
        [Column(Index = 0)]
        public string Column1 { get; set; }

        [Column(Index = 1)]
        public string Column2 { get; set; }

        [Column(Index = 2)]
        public string Column3 { get; set; }

        [Column(Index = 5)]
        public string Column5 { get; set; }
    }
    
    string file = @"D:\Temp\data.csv");

    using (CsvReader<Data> _reader = new(file))
    {        
        _reader.Open();
        _reader.Separator = ','; // or use _reader.DetectSeparator(); 
        var _data = Reader.ReadAsEnumerable().Where(p => p.Column1.Contains("16"));
        var _materialized = _data.ToList();

    }    
  • Reader.ReadAsEnumerable() reads and deserializes each csv file line per iteration in the collection, this allows for querying mega sized files.
  • CsvReader and CsvWriter can deserialize / serialize to simple types, this includes enum and byte[].
  • use CsvReader.DetectSeparator() to auto set the separator (looks for commonly used separators in first 10 lines).

CsvWriter<T>

    private IEnumerable<CsvSimple> LargeData()
    {
        for (int ii = 0; ii < 10000000; ii++)
        {
            CsvSimple _line = new()
            {
                AfBij = "bij",
                Bedrag = "100",
                Code = "test",
                Datum = "20200203",
                Mededelingen = $"test {ii}",
                Rekening = "3434",
                Tegenrekening = "3423424"
            };
            yield return _line;
        }
    }
    
    
    string file = @"D:\largedata.csv";
    using (CsvWriter<CsvSimple> _writer = new(file) { Separator = ',', Append = true })
    {
        _writer.Open();
        _writer.Write(LargeData());
    }
      

CsvReaderDynamic

    string file = @"C:\Temp\data.csv";
    using (CsvReaderDynamic _reader = new(file))
    {
        _reader.FirstRowIsHeader = true;
        _reader.Open();
        foreach (dynamic row in _reader.ReadAsEnumerable())
        {
            ...
        }
    }

CsvWriterDynamic

    string file = @"C:temp\data.csv");

    using (CsvWriterDynamic _writer = new(file))
    {
        dynamic row = new ExpandoObject();
        row.Id = 124;
        row.Name = "Name";

        List<dynamic> _data = new List<dynamic>();
        _data.Add(row);

        _writer.Write(_data);
    }
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

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
4.5.3 105 12/26/2024
4.5.2 89 12/18/2024
4.5.1 90 12/16/2024
4.5.0 90 12/16/2024
4.4.1 76 12/16/2024
4.4.0 109 12/14/2024
4.3.2 119 12/3/2024
4.3.1 96 11/22/2024
4.3.0 92 11/21/2024
4.2.5 92 11/20/2024
4.2.4 89 11/19/2024
4.2.3 109 11/13/2024
4.2.2 171 2/28/2024
4.2.1 128 2/24/2024
4.2.0 139 2/23/2024
4.1.2 115 2/22/2024
4.1.1 145 2/21/2024
4.1.0 140 2/21/2024
4.0.1 152 2/12/2024
4.0.0 140 2/12/2024
3.1.13 118 2/8/2024
3.1.12 157 2/7/2024
3.1.11 115 1/31/2024
3.1.10 126 1/19/2024
3.1.9 130 1/13/2024
3.1.8 129 1/12/2024
3.1.7 118 1/11/2024
3.1.5 141 1/8/2024
3.1.3 183 12/1/2023
3.1.2 143 12/1/2023
3.1.0 128 11/28/2023
3.0.7 215 8/27/2023
3.0.6 160 8/23/2023
3.0.5 168 8/23/2023
3.0.4 168 8/17/2023
3.0.3 184 8/15/2023
3.0.2 183 8/11/2023
3.0.1 202 8/11/2023
3.0.0 180 8/11/2023
2.0.7 228 8/9/2023
2.0.5 189 8/4/2023
2.0.4 187 8/3/2023
2.0.3 157 7/31/2023
2.0.2 184 7/28/2023
2.0.0 185 7/19/2023
1.7.53 229 4/14/2023
1.7.52 228 4/12/2023
1.7.51 216 4/7/2023
1.7.43 245 4/3/2023
1.7.42 226 4/3/2023
1.7.41 211 4/3/2023
1.7.5 215 4/7/2023
1.7.3 255 4/3/2023
1.7.2 243 4/3/2023
1.7.1 236 4/3/2023
1.7.0 241 4/1/2023
1.6.3 238 3/31/2023
1.6.2 241 3/29/2023
1.6.1 237 3/29/2023
1.6.0 231 3/27/2023
1.5.8 254 3/24/2023
1.5.7 223 3/22/2023
1.5.6 239 3/22/2023
1.5.5 247 3/21/2023
1.5.4 257 3/21/2023
1.5.1 247 3/20/2023
1.5.0 251 3/19/2023
1.4.5 248 3/18/2023
1.4.4 287 3/18/2023
1.4.3 241 3/18/2023
1.4.2 257 3/18/2023
1.4.1 229 3/18/2023
1.4.0 242 3/18/2023
1.3.92 253 3/18/2023
1.3.91 258 3/17/2023
1.3.9 245 3/17/2023
1.3.8 223 3/17/2023
1.3.7 252 3/17/2023
1.3.6 219 3/17/2023
1.3.5 235 3/17/2023
1.3.4 257 3/17/2023
1.3.3 248 3/16/2023
1.3.2 227 3/16/2023
1.3.1 254 3/16/2023
1.3.0 209 3/16/2023
1.2.0 247 3/14/2023
1.1.6 288 2/24/2023
1.1.5 333 2/16/2023
1.1.4 501 5/18/2022
1.1.3 742 1/27/2022
1.1.2 672 1/27/2022
1.1.1 721 1/14/2022
1.1.0 5,865 11/23/2021
1.0.5 414 5/11/2021
1.0.4 362 4/14/2021
1.0.3 402 4/12/2021
1.0.2 359 4/12/2021
1.0.1 338 4/7/2021
1.0.0 413 4/7/2021