时间跨度。C# 中的 FromSeconds()方法

原文:https://www . geesforgeks . org/timespan-from seconds-method-in-c-sharp/

此方法用于获取表示指定秒数的时间跨度,精确到最接近的毫秒。

语法:公共静态 TimeSpan FromSeconds(双精度值);

参数: :该参数指定秒数,精确到最近的毫秒..

返回值:返回一个新的表示值的 TimeSpan 对象。

异常:

  • overoverowexception:当给定的双精度值小于最小可能值或大于最大可能值,或者值为正数或负数时。
  • ArgumentException:当值为 NaN 时。

以下程序说明了时间跨度的使用。从秒(双)法:

例 1:

// C# program to demonstrate the
// TimeSpan.FromSeconds(Double)
// Method
using System;

class GFG {

    // Main Method
    public static void Main()
    {
        try {

            TimeSpan interval = TimeSpan.FromSeconds(0.43459);
            Console.WriteLine("The Timespan is : {0}",
                                           interval);
        }

        catch (OverflowException e) {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}

Output:

The Timespan is : 00:00:00.4350000

例 2:溢出异常

// C# program to demonstrate the
// TimeSpan.FromSeconds(Double) 
// Method
using System;

class GFG {

    // Main Method
    public static void Main()
    {
        try {

            TimeSpan interval = 
             TimeSpan.FromSeconds(Double.NegativeInfinity);

            Console.WriteLine("The Timespan is : {0}",
                                           interval);
        }

        catch (OverflowException e) {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}

Output:

Exception Thrown: System.OverflowException

参考: