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

C# 时间比较大小

时间:2016-06-22 15:41:27      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

  1.时间比较大小

  DateTime   t1   =   new   DateTime(100);  
  DateTime   t2   =   new   DateTime(20);  
   
  if   (DateTime.Compare(t1,   t2)   >     0)   Console.WriteLine("t1   >   t2");      // t1 大
  if   (DateTime.Compare(t1,   t2)   ==   0)   Console.WriteLine("t1   ==   t2");     // 相等
  if   (DateTime.Compare(t1,   t2)   <     0)   Console.WriteLine("t1   <   t2");   //t1 小

 

 2.获取上月最后一天和第一天

         // 获取上月
            DateTime lastMonth = DateTime.Now.AddMonths(-1);
            // 获取上月第一天
            string LastMonth_firstDay = lastMonth.AddDays(1 - lastMonth.Day).ToString("yyyy-MM-dd");
            // 获取上月最后一天
            string LastMonth_lastDay = lastMonth.AddDays(1 - lastMonth.Day).AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd");

C# 时间比较大小

标签:

原文地址:http://www.cnblogs.com/louby/p/5607077.html

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