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


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


在这里,我们将了解 TimeSpan 结构的 Equals() 方法。此方法用于将指定的引用与当前的引用进行比较。如果当前对象引用等于指定的对象引用,则返回 true,否则返回 false。

用法:

bool TimeSpan.Eqauls(TimeSpan Obj);

参数:

  • Obj:要与当前对象的引用进行比较的对象引用。

返回值:

此方法返回 bool 值,如果引用相等则返回 true,否则返回 false。

程序:

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

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);
        TimeSpan timespan3 = new TimeSpan(2, 2, 10, 0);
     
        bool ret = false;

        ret = timespan1.Equals(timespan2);
        if (ret == true)
            Console.WriteLine("timespan1 and timespan2 are equal");
        else
            Console.WriteLine("timespan1 and timespan2 are not equal");

        ret = timespan1.Equals(timespan3);
        if (ret == true)
            Console.WriteLine("timespan1 and timespan3 are equal");
        else
            Console.WriteLine("timespan1 and timespan3 are not equal");

        ret = timespan1.Equals(timespan1);
        if (ret == true)
            Console.WriteLine("timespan1 and timespan1 are equal");
        else
            Console.WriteLine("timespan1 and timespan1 are not equal");
    }
}

输出:

timespan1 and timespan2 are not equal
timespan1 and timespan3 are not equal
timespan1 and timespan1 are equal
Press any key to continue . . .



相关用法


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