摘要: public static class JsonAdapter<T> where T : class { public static string ToJson(T obj) { return JsonAdapter.ToJson(obj); } } public static class Json 阅读全文
posted @ 2016-06-03 17:07 If_1989 阅读(233) 评论(0) 推荐(0) 编辑
摘要: public static class XmlSerializeAdapter { public static T Deserialize<T>(XmlNode node) where T : class { return new XmlSerializer(typeof(T)).Deseriali 阅读全文
posted @ 2016-06-03 17:06 If_1989 阅读(842) 评论(0) 推荐(0) 编辑
摘要: Echarts 动态数据图表效果实现 阅读全文
posted @ 2016-06-03 16:59 If_1989 阅读(3285) 评论(1) 推荐(0) 编辑
摘要: 项目中用到 JqGrid 前端数据控件,数据格式要求 为Json 虽然系统中有做相应实现,但未对DataTable 转 Json 有相应方法,故 在项目中 对 DataTable 写了一个转Json 的扩展方法,请看清楚 是扩展方法, 记得 Static 详细扩展方法的使用请 自行百度。 具体代码如 阅读全文
posted @ 2016-06-03 16:39 If_1989 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 最近项目中需要实现 类 cmd 命令ping 的操作。查看当前Ip是否畅通。代码如下: 第一步 引用:System.Net 代码如下: 阅读全文
posted @ 2016-06-03 16:33 If_1989 阅读(922) 评论(0) 推荐(0) 编辑