I am trying to find a path of a JSON value. Consider the following JSON:
{ \"car\": { \"type\": [{ \"sedan\": { \"mak
you can Convert the Json to dynamic object as below.
JavaScriptSerializer js=new JavaScriptSerializer(); var dataObject=Json.Decode(jsonString);
Then you can reflect over it and find out your string "honda" and construct the path as you like.