https://github.com/gkaszewski/dictionary-generator
A tool that generates JSON file from CSV and manages data for my game. Written in C#
https://github.com/gkaszewski/dictionary-generator
csharp
Last synced: 5 months ago
JSON representation
A tool that generates JSON file from CSV and manages data for my game. Written in C#
- Host: GitHub
- URL: https://github.com/gkaszewski/dictionary-generator
- Owner: GKaszewski
- Created: 2019-04-14T15:55:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-21T17:23:06.000Z (over 2 years ago)
- Last Synced: 2025-01-04T12:12:02.671Z (6 months ago)
- Topics: csharp
- Language: C#
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dictionary generator
Simple tool for my game which converts csv data table to JSON file.

## Structure of CSV file
| Spanish| English |
|--|--|
| álgebra | algebra |
| arte| art|**Note**
The file does not actually have headers 'Spanish' and 'English'.## JSON file
```json
[
{
"Spanish": "álgebra",
"English": "algebra"
},
{
"Spanish": "arte",
"English": "art"
}
]
```## Third party packages
[Newtonsoft JSON](https://www.newtonsoft.com/json)