I searched through similar questions and couldn\'t find anything that quite matched what i was looking for.
New to C# so bear with me please.
I have some jso
Deserialize your JSON into the most basic form:
Dictionary theData= new JavaScriptSerializer().Deserialize>(jsonString);
string baseItemName = (string)theData["baseItem"];
Dictionary someNode= (Dictionary)theData["something"];
string anything = (string)someNode["anything"];
string nothing = (string)someNode["nothing"];
The call to Deserialize() creates a tree of Dictionary that you can traverse at will.