当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# TimeSpan CompareTo()用法及代码示例


在这里,我们将了解 TimeSpan 结构的 CompareTo() 方法。此方法与 Compare() 方法相同,但 Compare() 是静态方法,而 CompareTo() 是实例方法。这是用于比较 TimeSpan 结构的两个对象的方法,它返回一个整数值,指示当前对象大于、等于和小于第二个对象。

用法:

int TimeSpan.CompareTo(TimeSpan Obj);

参数:

  • Obj:Object 要与当前对象进行比较。

返回值:

此方法返回一个整数值以指示比较。

程序:

下面给出了演示使用 TimeSpan 结构的 CompareTo() 方法的源代码。给定的程序已成功编译并执行。

using System;

class TimeSpanDemo
{
    //Entry point of Program
    static public void Main()
    {
        //Here we create timespan with day,hour,minutes and seconds
        TimeSpan timespan1 = new TimeSpan(4,2, 20, 0);
        TimeSpan timespan2 = new TimeSpan(2,2, 10, 0);

        int retVal = 0;

        retVal = timespan1.CompareTo(timespan2);

        
        if (retVal > 0)
            Console.WriteLine("timespan1 is greater than timespan2");
        else if(retVal==0)
            Console.WriteLine("timespan1 is equal to timespan2");
        else
            Console.WriteLine("timespan1 is less than timespan2");
    }
}

输出:

timespan1 is greater than timespan2
Press any key to continue . . .



相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the use of CompareTo() method of TimeSpan structure。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。