Confusion in getting Parent from JToken
I have the following JSON document stored in a text file { "attributes": {"attr0":"value0"}, "children" : { "ProductA" : { "attributes": {"attr1":"value1", "attr2":"value2"}, "children" : { "ProductC":{ "attributes": {"attr3":"value3", "attr4":"value4"}, "children" : {}, "referencedChildren" : {} } }, "referencedChildren" : {} }, "ProductB" : { "attributes": {"attr5":"value5", "attr6":"value6"}, "children" : {}, "referencedChildren" : {} } }, "referencedChildren" : {} } I have written this code in C# using NewtonSoft JSon.NET Library string content = File.ReadAllText(@"c:\temp\foo.txt");