I\'m using JSON.NET to parse a JSON reponse from openexhangerates.org server side using .NET. The response contains a nested object (\"rates\") which has a long list of nume
If you're expecting the child object to have an object property(or field), it's better to use:
Dictionary rates = parsed["rates"].ToObject>();
Otherwise, it will throw an error.