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]”
求解惑
以上是关于json.net将string数据转换为List<>报错的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 json.net 将 c# 通用列表转换为 json?
如何使用 json.net 将 c# 通用列表转换为 json?