json.net将string数据转换为List<>报错

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json.net将string数据转换为List<>报错相关的知识,希望对你有一定的参考价值。

using System.Collections.Generic;
using System.Web.Script.Serialization;
........
var prids ="[ \"area\":\"58\",\"id\":\"5234\" , \"area\":\"58\",\"id\":\"5236\" , \"area\":\"58\",\"id\":\"5249\" ]";
var json = new javascriptSerializer();
var list = json.Deserialize(prids, typeof(List<CheckFb>)) as List<CheckFb>;
.....

[Serializable]
public class CheckFb

public string area get; set;
public string id get; set;

运行会报错
无法将类型为“System.String”的对象转换为类型“System.Collections.Generic.List`1[CheckFb]”

求解惑

参考技术A 没见过这么做转换的,你遍历prids,截取字符串,然后再添加到集合里面吧。 参考技术B 先转换为数组,在转为集合试下

以上是关于json.net将string数据转换为List<>报错的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 json.net 将 c# 通用列表转换为 json?

如何使用 json.net 将 c# 通用列表转换为 json?

如何使用 json.net 将数据表转换为 json 字符串?

JSON.NET数组转换

怎样用C#把JSON数据转换为list或数组

如何将 C# List<string[]> 转换为 Javascript 数组?