C# 时间处理[转载]

来源:互联网 发布:全国网络报警中心电话 编辑:程序博客网 时间:2024/05/21 17:45

一、取某月的最后一天
法一、使用算出该月多少天,年+月+加上多少天即得,举例取今天这个月的最后一天

private void GetLastDateForMonth(DateTime DtStart,out DateTime DtEnd)
  {
   int Dtyear,DtMonth;

   DtStart = DateTime.Now;
   Dtyear  = DtStart.Year;
   DtMonth = DtStart.Month;

   int MonthCount = DateTime.DaysInMonth(Dtyear,DtMonth);
   DtEnd = Convert.ToDateTime(Dtyear.ToString()+"-"+DtMonth.ToString()+"-"+MonthCount);

  }

法二、取出下月的第一天减去一天便是这个的最后一天

private void GetLastDateForMonth(DateTime DtStart,out DateTime DtEnd)
  {
   int Dtyear,DtMonth;

   DtStart = DateTime.Now.AddMonths(1);
   Dtyear  = DtStart.Year;
   DtMonth = DtStart.Month;
   
   DtEnd = Convert.ToDateTime(Dtyear.ToString()+"-"+DtMonth.ToString()+"-"+"1").AddDays(-1);

  }

 二、时间差的计算
法一、使用TimeSpan ,同时也介绍一下TimeSpan的用法
 
相关属性和函数

Add:与另一个TimeSpan值相加。
Days:返回用天数计算的TimeSpan值。
Duration:获取TimeSpan的绝对值。
Hours:返回用小时计算的TimeSpan值
Milliseconds:返回用毫秒计算的TimeSpan值。
Minutes:返回用分钟计算的TimeSpan值。
Negate:返回当前实例的相反数。
Seconds:返回用秒计算的TimeSpan值。
Subtract:从中减去另一个TimeSpan值。
Ticks:返回TimeSpan值的tick数。
TotalDays:返回TimeSpan值表示的天数。
TotalHours:返回TimeSpan值表示的小时数。
TotalMilliseconds:返回TimeSpan值表示的毫秒数。
TotalMinutes:返回TimeSpan值表示的分钟数。
TotalSeconds:返回TimeSpan值表示的秒数。 
 

简单示例:
DateTime d1 =new DateTime(2004,1,1,15,36,05);
DateTime d2 =new DateTime(2004,3,1,20,16,35);

TimeSpan d3 = d2.Subtract(d1);

LbTime.Text = "相差:"
+d3.Days.ToString()+"天"
+d3.Hours.ToString()+"小时"
+d3.Minutes.ToString()+"分钟"
+d3.Seconds.ToString()+"秒";

法二、使用Sql中的DATEDIFF函数
使用方法:DATEDIFF ( datepart , startdate , enddate )
它能帮你取出你想要的各种形式的时间差,如相隔多少天,多少小时,多少分钟等,具体格式如下:

日期部分缩写
yearyy, yyyy
quarterqq, q
Monthmm, m
dayofyeardy, y
Daydd, d
Weekwk, ww
Hourhh
minutemi, n
secondss, s
millisecondms


如:datediff(mi,DtOpTime,DtEnd)  便能取出他们之间时间差的分钟总数,已经帮你换算好了,对于要求规定单位,时、分、秒特别有用

三  计算两个日期之间相差的工作日天数(转载:http://wrfwjn.blog.hexun.com/482517_d.html
///  <summary>
  ///  计算两个日期之间相差的工作日天数
  ///  </summary>
  ///  <param  name="dtStart">开始日期</param>
  ///  <param  name="dtEnd">结束日期</param>
  ///  <returns>Int</returns>
  public  int CalculateWorkingDays(DateTime  dtStart,  DateTime dtEnd)
  {
   int  count=0;
   for(DateTime  dtTemp=dtStart;dtTemp<dtEnd;dTemp=dtTemp.AddDays(1))
   {
//    if(dtTemp.DayOfWeek!=DayOfWeek.Saturday&&dtTemp.DayOfWeek!=DayOfWeek.Sunday)
//    {
//     count++;
//    }
    count++;
   }
   return  count;
  }