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


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


在这里,我们将了解 TimeSpan 结构的 FromSeconds() 方法。这是一个静态方法,用于返回 TimeSpan 对象的对象,该对象用于表示精确到最接近毫秒的指定秒数。

用法:

TimeSpan TimeSpan.FromSeconds(double secs);

参数:

  • secs:指定的秒数。

返回值:

此方法返回 TimeSpan 对象的对象,该对象用于表示精确到最接近毫秒的指定秒数。

异常:

  • System.OverflowException
  • System.ArgumentException

程序:

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

using System;

class TimeSpanDemo
{
    //Entry point of Program
    static public void Main()
    {
        TimeSpan timespan = TimeSpan.FromSeconds(55.999888);
        Console.WriteLine("timespan accurate to nearest millisecond:"+timespan);
    }
}

输出:

timespan accurate to nearest millisecond:00:00:56
Press any key to continue . . .



相关用法


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