Home »
.Net »
C# Programs
C# - TimeSpan.FromDays() Method with Example
In this tutorial, we will learn about the C# TimeSpan.FromDays() method with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.FromDays() Method
The TimeSpan.FromDays() 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
C# Example of TimeSpan.FromDays() Method
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 »