我正在尝试以这种格式反序列化 JSON:
{
"data": [
{
"installed": 1,
"user_likes": 1,
"user_education_history": 1,
"friends_education_history": 1,
"bookmarked": 1
}
]
}
像这样的简单字典:
{
"installed": true,
"user_likes": true,
"user_education_history": true,
"friends_education_history": true,
"bookmarked": true
}
使用CustomCreationConverter
in JSON.NET 4.0
。
我收到错误消息,说我只能反序列化为数组。它是否正确?如何“强制”它创建字典?我需要创建一个自定义类吗?