首页 > 代码库 > Newtonsoft.Json
Newtonsoft.Json
在线生成实体:http://tool.chinaz.com/tools/json2entity.aspx
RootObject ac = new RootObject(); ac = JsonConvert.DeserializeObject<RootObject>(sb.ToString()); sb2.Append(ac.status); sb2.Append("<br>"); sb2.Append(ac.lastResult.message); Context.Response.Write(sb2.ToString()); public class RootObject { public string status { get; set; } public string billstatus { get; set; } public string message { get; set; } public string autoCheck { get; set; } public string comOld { get; set; } public string comNew { get; set; } public LastResult lastResult { get; set; } } public class LastResult { public string message { get; set; } public string nu { get; set; } public string ischeck { get; set; } public string condition { get; set; } public string com { get; set; } public string status { get; set; } public string state { get; set; } public List<Data> data { get; set; } } public class Data { public string time { get; set; } public string ftime { get; set; } public string context { get; set; } }
Newtonsoft.Json
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。