Hi mindstick ! What is the simplest C# function to parse a JSON string into an object? thanks in advance !
JObject o = JObject.Parse(@"
{
""something"":""value"",
""jagged"":
{
""someother"":""value2""
}
}");
string something = (string)o.SelectToken("something");