I'm building an app in c# and i need to parse / create / edit / delete inforamtions (etc...) in a .json file. Underneeth is how the file .json will look like.
I was thinking of doing dynamic arrow of class (don't know if it is the way we say it in english). Is there a faster and simpler way to do this?
Thank you very much!
{
"name": [
{
"var1": string or int,
"var2": string or int,
etc..
.
.
.
},
{
"var1": string or int,
"var2": string or int,
etc..
.
.
.
}
]
}