Recently I need to parse JSON object like this:
{
"method":"someMehtod",
"content":{"oneObject":"can be a very complicated object"},
"somotherthing":"someOtherValue"
}
into C# with Newtonsoft JSON.NET. I know it is very common to create a new class or classes for the purpose but this is highly unwelcome choice to my current situation since it is considered unnecessary to my superior (and I don't want there to be too many classes like this either). Is there anything that resembles JAVA's JSONObject class in C# world I can use to query multiple level json without making new class?