Home »
.Net »
C# Programs
C# program to demonstrate the use of FromDays() method of TimeSpan structure
Here, we are going to demonstrate the use of FromDays() method of TimeSpan structure in C#.Net.
Submitted by Nidhi, on April 20, 2021
Here, we will learn about the FromDays() method of TimeSpan structure. This is a static method that is used to return an object of TimeSpan object which is used to represent a specified number of days that are accurate to the nearest millisecond.
Syntax:
TimeSpan TimeSpan.FromDays(double Days);
Parameter(s):
- Days: A specified number of days.
Return value:
This method returns the object of TimeSpan object which is used to represent a specified number of days that are accurate to the nearest millisecond.
Exception(s):
- System.OverflowException
- System.ArgumentException
Program:
The source code to demonstrate the use of FromDays() method of TimeSpan structure is given below. The given program is compiled and executed successfully.
using System;
class TimeSpanDemo
{
//Entry point of Program
static public void Main()
{
TimeSpan timespan = TimeSpan.FromDays(28.999888);
Console.WriteLine("timespan accurate to nearest millisecond: "+timespan);
}
}
Output:
timespan accurate to nearest millisecond: 28.23:59:50.3230000
Press any key to continue . . .
C# TimeSpan Programs »