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

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

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

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

参数: :此参数指定天数,精确到最近的毫秒。

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

异常:

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

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

程序 1:

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

class GFG {

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

            TimeSpan interval = TimeSpan.FromDays(43.999999);
            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 : 43.23:59:59.9140000

程序 2:溢出异常

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

class GFG {

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

            TimeSpan interval = 
                TimeSpan.FromDays(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

参考: