I have this following json. I want to iterate over it and get the values of a and b so that i could set it at other place. Can anyone please tell me how to do this in c#? json is --
{
"_id": "12345",
"r": [
"my-user",
"college-student"
],
"list": [
{
"a": "CSE",
"b": "DataBase"
},
{
"a": "IT",
"b": "ComputerNetwork"
}
]
}