Home »
.Net »
C# Programs
C# - TimeSpan.FromSeconds() Method with Example
In this tutorial, we will learn about the C# TimeSpan.FromSeconds() method with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.FromSeconds() Method
The TimeSpan.FromSeconds() is a static method that is used to return an object of TimeSpan object which is used to represent a specified number of seconds that are accurate to the nearest millisecond.
Syntax
TimeSpan TimeSpan.FromSeconds(double secs);
Parameter(s)
- secs: A specified number of seconds.
Return Value
This method returns the object of TimeSpan object which is used to represent a specified number of seconds that are accurate to the nearest millisecond.
Exception(s)
- System.OverflowException
- System.ArgumentException
C# Example of TimeSpan.FromSeconds() Method
The source code to demonstrate the use of FromSeconds() 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.FromSeconds(55.999888);
Console.WriteLine("timespan accurate to nearest millisecond: " + timespan);
}
}
Output
timespan accurate to nearest millisecond: 00:00:56
Press any key to continue . . .
C# TimeSpan Programs »