json 列表中的数据
json data inside a list
我有以下代码,我需要在 List<> 中使用它。
有人可以帮我解决这个问题吗?
protected void Page_Load(object sender, EventArgs e)
{
string url = "http://localhost:52148/api/federateds";
using (var w = new WebClient())
{
var json_data = string.Empty;
try
{
json_data = w.DownloadString(url);
}
catch (Exception) { }
}
List<federateds> federados = new ????;
}
您应该尝试 JSON 框架,例如 Json.NET
有了它你的代码看起来像
List<federateds> federados = JsonConvert.DeserializeObject<List<federateds>>(json_data);
我有以下代码,我需要在 List<> 中使用它。 有人可以帮我解决这个问题吗?
protected void Page_Load(object sender, EventArgs e)
{
string url = "http://localhost:52148/api/federateds";
using (var w = new WebClient())
{
var json_data = string.Empty;
try
{
json_data = w.DownloadString(url);
}
catch (Exception) { }
}
List<federateds> federados = new ????;
}
您应该尝试 JSON 框架,例如 Json.NET
有了它你的代码看起来像
List<federateds> federados = JsonConvert.DeserializeObject<List<federateds>>(json_data);