c# – DateTime.CompareTo实际返回的整数?

我一直在寻找答案一段时间,但我无法找到它.

我特别看着this page.它说,CompareTo方法返回一个整数,表示它是否较早,相同或更晚.我明白使用它,我明白,对于较早的时间,整数是负的,因为它是0等.

但是这个整数是多少?它是否以秒,毫秒,刻度,或者什么也没有返回差异?我希望你可以帮助我,如果有人可以找到另一个这个问题的帖子,请告诉我.我真的很惊讶,我没有在这个主题上找到一个问题.

解决方法

该文档实际上是在IComparable界面页面(DateTime实现的):
http://msdn.microsoft.com/en-us/library/system.icomparable.aspx

The implementation of the CompareTo(Object) method must return an Int32 that has one of three values,as shown in the following table.

Less than zero: The current instance precedes the object specified
by the CompareTo method in the sort order.

Zero: This current instance occurs in the same position in the sort order as the object specified by the CompareTo method.

Greater than zero: This current instance follows the object specified by the CompareTo method in the sort order.

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString("x2"));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable<Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include "WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...