DateTime.Compare(t1,t2)比较两个日期大小

Posted net-sky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DateTime.Compare(t1,t2)比较两个日期大小相关的知识,希望对你有一定的参考价值。

DateTime.Compare(t1,t2)比较两个日期大小,排前面的小,排在后面的大,比如:2011-2-1就小于2012-3-2
返回值小于零:  t1 小于 t2。 
返回值等于零 : t1 等于 t2。 
返回值大于零:  t1 大于 t2。 

如:

[c-sharp] view plain copy
 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5.   
  6. namespace ConsoleApplication1  
  7. {  
  8.     class Program  
  9.     {  
  10.         static void Main(string[] args)  
  11.         {  
  12.   
  13.             DateTime t1 = DateTime.Parse("2011-2-2");  
  14.             DateTime t2 = DateTime.Parse("2011-3-1");  
  15.   
  16.             if (DateTime.Compare(t1, t2) > 0)   
  17.                 Console.WriteLine("t1 > t2");  
  18.             if (DateTime.Compare(t1, t2) == 0)   
  19.                 Console.WriteLine("t1 == t2");  
  20.             if (DateTime.Compare(t1, t2) < 0)   
  21.                 Console.WriteLine("t1 < t2");  
  22.         }  
  23.     }  
  24. }  

 

运行结果:

t1 < t2
请按任意键继续. . .

文章出处:https://blog.csdn.net/aspnet2002web/article/details/6171415

以上是关于DateTime.Compare(t1,t2)比较两个日期大小的主要内容,如果未能解决你的问题,请参考以下文章

C# 时间比较大小

C语言有没有方便一点的比较时间前后的函数阿

递归子树

MYSQL中 select * from table1 t1, table2 t2 where t1.name= t2.name

Scala 泛型与 C# 的比较

如何在遍历列表时比较 DateTime 对象?