我有一个通过序列化对象数组创建的 json 字符串:
[
{
"html": "foo"
},
{
"html": "bar"
}
]
如何将其反序列化为一些可迭代的 C# 结构?我试过这段代码,但我收到No parameterless constructor defined for type of 'System.String'.
错误:
string[] htmlArr = new JavaScriptSerializer().Deserialize<String[]>(html);
我想要接收的是一个可迭代的结构来获取每个“html”对象。