我在这里想念什么?为什么我会得到这个异常?用户代码未处理 Newtonsoft.Json.JsonSerializationException,将值“[{“username”:“someone”,“computername”:“computer1”,“PID”:“1234”}]”转换为类型“System.Collections”时出错。 Generic.List`1[WebApplication4.PInfo]'。路径 '',第 1 行,位置 95。
代码如下,很简单的类,很简单的内容,但是一个讨厌的错误=(
public class PInfo
{
public string username { get; set; }
public string computername { get; set; }
public string PID { get; set; }
}
string s = "\"[{\\\"username\\\":\\\"someone\\\",\\\"computername\\\":\\\"computer1\\\",\\\"PID\\\":\\\"1234\\\"}]\"";
var z = JsonConvert.DeserializeObject<List<PInfo>>(s);