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
- Host: GitHub
- URL: https://github.com/fabian918/csvportable
- Owner: Fabian918
- License: mit
- Created: 2023-05-12T12:17:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T05:45:25.000Z (almost 2 years ago)
- Last Synced: 2024-04-08T13:26:15.427Z (almost 2 years ago)
- Topics: csv, excel, excel-export, excel-import, excelreader
- Language: C#
- Homepage:
- Size: 151 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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:

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)