I have following json:
{
"578080":{
"success":true,
"data":{
"price_overview":{
"currency":"USD",
"initial":1799,
"final":1799,
"discount_percent":0
}
}
}
}
I want to search "initial".
How can I do this using Json.Net or any other efficient means in C#?
Note : i haven't tried anything because i am unsure where to start