JsonConvert.DeserializeObject

时间:2015-08-10 12:59:03

标签: json parsing

我正在尝试DeserializeObject但不知道如何到达括号内的对象[]

            dynamic response = null;
        response = JsonConvert.DeserializeObject(apiResponseContent);
        apiResponseContent =
            "CasinoId: " + response.Result.FirstName + "\r\n" +
            "PlayerId: " + response.Result.Id

我试图解析它的回复:

"{\"Status\":{\"ErrorCode\":0,\"ErrorName\":\"SUCCEED\",\"ErrorMessage\":\"\",\"ReferenceNumber\":\"\"},\"Result\":[{\"FirstName\":Adam,\"Id\":6161999\"}]}"

希望作为回答

1 个答案:

答案 0 :(得分:1)

我相信您可以使用密钥集合访问JSON对象中的字段,因此响应[“keynamehere”]。

但最好的方法是创建一个模仿JSON对象的对象和字段的对象,然后可以反序列化到该对象,它将映射字段。 (即:JsonConvert.DeserializeObject<YOUROBJECTHERE>(apiResponseContent)

请参阅一些有关如何更详细地执行此操作的参考链接: http://www.newtonsoft.com/json/help/html/DeserializeObject.htm
Deserializing JSON data to C# using JSON.NET

如果您想获得更多花哨,可以创建自己的自定义转换器: Deserialize the JSON where the values are field names with JSON.NET