列表中的json数据

时间:2016-03-03 12:14:40

标签: c# json jquery-jtable

我有以下代码,我需要在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 ????;

    }

1 个答案:

答案 0 :(得分:0)

您应该尝试JSON框架,例如Json.NET

使用它,您的代码看起来像

List<federateds> federados = JsonConvert.DeserializeObject<List<federateds>>(json_data);