我正在尝试将简单的 json 解析为 Windows phone 8 中的动态对象。我正在使用带有此代码的 Newtonsoft.JSON 库:
dynamic response = JObject.Parse(responseText);
string streamRequestUrl = response._links.streams;
我可以那里存在 _links
但是当我尝试阅读它时,我得到了Microsoft.CSharp.RuntimeBinder.RuntimeBinderException
. 如何从中获取 _links 属性值?