从Json String C#获取价值

时间:2017-07-13 02:08:54

标签: c# json

如何获取"id\":-1002112545646或JSON的所有结果

var json = webClient.DownloadString(URL);

CSRES m = JsonConvert.DeserializeObject(json);

“{\” 确定\ “:真,\” 结果\ “:{\” MESSAGE_ID \ “:1,\” 聊天\ “:{\” ID \ “: - 1002112545646,\” 标题\“: \ “ChanelTitle \”,\ “用户名\”:\ “ChanelName \” \ “类型\”:\ “信道\”},\ “日期\”:12565259,\ “文本\”:\ “程序hello_world \” }}“

我写这个但没有用

    public class CSRES
{
    public bool result { get; set; }
    public string Id { get; set; }
    public string Title { get; set; }
    public string Username { get; set; }
    public string Type { get; set; }
    public string Date { get; set; }
    public string Text { get; set; }
}

0 个答案:

没有答案