Skip to content
DotNet2Web edited this page May 14, 2025 · 7 revisions

CsvCore the only csv handling package you'll ever need

Welcome to the documentation for the CsvCoreReader and CsvCoreWriter utilities provided by DotNet2Web.

This library offer a simple yet powerful way to work with CSV files in .NET applications. With minimal setup, you can read and write CSV files using strongly typed models, support culture-specific delimiters, and even validate input data.

Components

Quick Setup

To install, add the package to you project using the following command: dotnet add package csvcore or by using the NuGet package manager in your IDE.

To use, register the components with your IoC container:

csharp

builder.Services.AddScoped<ICsvCoreReader, CsvCoreReader>();
builder.Services.AddScoped<ICsvCoreWriter, CsvCoreWriter>();
Clone this wiki locally