{
"result": {
"sentences": [
[
{
"errorType": "correct",
"index": 0,
"isCorrect": true,
"sentence_index": 0,
"suggestion": "Program",
"token": "Pregram"
},
{
"errorType": "correct",
"index": 1,
"isCorrect": true,
"sentence_index": 0,
"suggestion": "Get",
"token": "Grt"
},
{
"errorType": "correct",
"index": 2,
"isCorrect": true,
"sentence_index": 0,
"suggestion": "Our",
"token": "Hour"
}
]
],
"totalErrorCount": 0
},
"time_taken": "0.25s"
}
How can i read this JSON file on C#? I want to read all arrays "suggestion" and "token" value.
I have no good knowledge on JSON. Tried a lot of parsers from Github and https://jsonutils.com/. Did not work for me.