I\'m trying to use JsonPath for .NET (http://code.google.com/p/jsonpath/downloads/list) and I\'m having trouble finding an example of how to parse a Json string and a JsonPa
using Newtonsoft.Json.Linq yo can use function SelectToken and try out yous JsonPath Check documentation https://www.newtonsoft.com/json/help/html/T_Newtonsoft_Json_Linq_JObject.htm
Object jsonObj = JObject.Parse(stringResult);
JToken pathResult = jsonObj.SelectToken("results[0].example");
return pathResult.ToString();