An open API service indexing awesome lists of open source software.

https://github.com/fabian918/csvportable

Simple, open & free Csv mapper libary for C# .NET Core
https://github.com/fabian918/csvportable

csv excel excel-export excel-import excelreader

Last synced: 10 months ago
JSON representation

Simple, open & free Csv mapper libary for C# .NET Core

Awesome Lists containing this project

README

          

# CsvPortable
Simple, open & free Csv mapper libary for C# .NET Core

## Core Features
- easy **Serialization** and **Deserialization** of C# Objects
- Objects that contain Objects are supported
- Stream support for easy Integration

## Getting Started

### Add the Package:

via IDE:
![alt text](AddNuget.png)

via terminal:

```
dotnet add package CSVPortable
```

manual:
- add

```xml



```
to the `.csproj` file.

### Code:
- [Hello World](./CsvPortable/HelloWorld/Program.cs)
- [Read & Write Files](./CsvPortable/ReadAndWriteFiles/Program.cs)
- [Export existing models](./Documentation/CreateReportsFromExistingModels.md)