12 2016 档案

摘要:今天有时间戳转换的需求,网上找了半天才找到相关代码,经测试有效,特作此笔记和大家分享! 1.时间戳转为C#格式时间 2.DateTime时间格式转换为Unix时间戳格式 阅读全文
posted @ 2016-12-17 20:15 代码沉思者 阅读(1002) 评论(0) 推荐(0) 编辑
摘要:using System.Linq; List ListA = new List(); List ListB = new List(); List ListResult = new List(); ListResult = ListA.Distinct().ToList();//去重 ListResult = ListA.Except(ListB).ToList(... 阅读全文
posted @ 2016-12-01 13:14 代码沉思者 阅读(1396) 评论(0) 推荐(0) 编辑