A comprehensive .NET class library that extends the capabilities of CsvHelper, a popular CSV parsing and writing library for .NET applications.
$ dotnet add package MyNet.CsvHelper.Extensions
A versatile extension library for advanced CSV parsing, writing, and integration in .NET applications.
Install via NuGet:
dotnet add package MyNet.CsvHelper.Extensions
using MyNet.CsvHelper.Extensions;
// Parse CSV to objects
var records = CsvReaderExtensions.Read<MyClass>(csvStream);
// Write objects to CSV
CsvWriterExtensions.Write(records, csvStream);
// Read Excel file
var excelRecords = ExcelReader.Read<MyClass>(excelStream);
Copyright © Stéphane ANDRE.
Distributed under the MIT License. See LICENSE for details.