c# 一个日期时间 直接增加减去时间获得另一个日期时间
2020-12-13 14:36
标签:style blog http color os ar sp 数据 div 首先得感谢爱编程的大叔为我解答这个问题,毕竟个人是个菜鸟,哈哈 废话不多说,在数据库中取到了的date的时间格式是yyyy-MM-dd hh:mm:ss 如果是string类型直接可以通过DateTime.Parse()来强制类型转换成DateTime 如果直接获得的是DateTime类型数据请直接无视上面的类型转换 除了AddSeconds加减秒数以外 还有AddYear加减年数, AddMonth加减月数, AddDay加减天数, AddHour加减小时, AddMinute加减分钟……等的函数 c# 一个日期时间 直接增加减去时间获得另一个日期时间 标签:style blog http color os ar sp 数据 div 原文地址:http://www.cnblogs.com/fengguowuhen/p/4064532.html1 string LONGTIME = item["LONGTIME"].ToString();
2 int longtime =int.Parse(LONGTIME);
3 string END_TM = item["EXETIME"].ToString();
4 DateTime end_tm = DateTime.Parse(END_TM);
5 DateTime start_tm = end_tm.AddSeconds(-1*longtime);