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


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


在这里,我们将了解 TimeSpan 结构的 Duration() 方法。该方法用于返回包含当前对象绝对值的 TimeSpan 结构对象。

用法:

TimeSpan TimeSpan.Duration();

参数:

此方法不包含任何参数。

返回值:

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

程序:

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

using System;

class TimeSpanDemo
{
    //Entry point of Program
    static public void Main()
    {
        TimeSpan timeSpan = new TimeSpan(-75643);
        Console.WriteLine("Absolute value of timeSpan is:" + timeSpan.Duration());
    }
}

输出:

Absolute value of timeSpan is:00:00:00.0075643
Press any key to continue . . .



相关用法


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