I have a json object as the following:
{
"search-results": {
"results-count": "2"
"entry": [
{
"id": "0",
"count": "10",
},
{
"id": "1",
"count": "22",
}
]
}
}
I would like to get the sum of counts; 32 in this example. I am looking into doing this using LINQ, but any more "readable" alternative would be appreciate.