码迷,mamicode.com
首页 > Windows程序 > 详细

C#获得时间段

时间:2014-11-26 13:33:52      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   os   sp   strong   on   div   art   

DateTime today = dt.Date;//今天 00:00:00
 DateTime tomorrow = dt.Date.AddDays(1);//明天 00:00:00
 DateTime startWeek = dt.AddDays(1 - Convert.ToInt32(dt.DayOfWeek.ToString("d"))).Date; ;  //本周周一
 DateTime startNextWeek = startWeek.AddDays(7).Date;  //下周周一
 DateTime startMonth = new DateTime(dt.Year, dt.Month, 1);  //本月月初 
 DateTime startNextMonth = new DateTime(dt.Year, dt.Month + 1, 1);  //下月月初
 DateTime startYear = new DateTime(dt.Year, 1, 1);  //本年年初
 DateTime startNextYear = new DateTime(dt.Year + 1, 1, 1);  //次年年初

 

采集

C#获得时间段

标签:style   http   ar   os   sp   strong   on   div   art   

原文地址:http://www.cnblogs.com/joke168/p/4122894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!