Open In App

TimeSpan.FromMinutes() Method in C#

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

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

Syntax: public static TimeSpan FromMinutes (double value);

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

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

Exceptions:

  • OverflowException: If 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.FromMinutes(Double)Method:

Example 1:




// C# program to demonstrate the
// TimeSpan.FromMinutes(Double) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            TimeSpan interval = TimeSpan.FromMinutes(8.12345);
            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:08:07.4070000

Example 2: For Overflow Exception




// C# program to demonstrate the
// TimeSpan.FromMinutes(Double) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            TimeSpan interval = 
               TimeSpan.FromMinutes(Double.PositiveInfinity);
  
            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
Previous
Next
Share your thoughts in the comments

Similar Reads