Open In App

TimeSpan.FromDays() Method in C#

Last Updated : 07 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

This method is used to get a TimeSpan that represents a specified number of days, accurate to the nearest millisecond.

Syntax: public static TimeSpan FromDays (double value);

Parameter:
value: This parameter specifies the number of days, accurate to the nearest millisecond.

Return Value: It returns a new TimeSpan object that represents the value.

Exceptions:

  • OverflowException: It occurs when the given double value is smaller than the smallest possible value or greater than the largest possible value or the value is PositiveInfinity or is NegativeInfinity.
  • ArgumentException: If the value is NaN.

Below programs illustrate the use of TimeSpan.FromDays(Double)Method:

Program 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

Program 2: For Overflow Exception




// 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

Reference:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads