Home »
.Net »
C# Programs
C# - TimeSpan.TotalSeconds Property with Example
In this tutorial, we will learn about the C# TimeSpan.TotalSeconds property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.TotalSeconds Property
The TimeSpan.TotalSeconds property is read-only which is used to represent the total seconds of the current instance in the TimeSpan structure. Here, we create an instance of TimeSpan and initialized with days, hours, minutes, seconds, and milliseconds.
Syntax
double TimeSpan.TotalSeconds;
Parameter(s)
Return Value
This property returns a double value that represents the number of seconds in the current instance of the TimeSpan structure.
C# Example of TimeSpan.TotalSeconds Property
The source code to demonstrate the use of TotalSeconds property 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() {
// Here we create instance timespan and
// initialized with days, hours, minutes, second,
// and milliseconds
TimeSpan timeSpan = new TimeSpan(2, 13, 35, 44, 213);
Console.WriteLine("Created TimeSpan values:" + timeSpan);
Console.WriteLine("Seconds in TimeSpan: " + timeSpan.TotalSeconds);
}
}
Output
Created TimeSpan values:2.13:35:44.2130000
Seconds in TimeSpan: 221744.213
Press any key to continue . . .
C# TimeSpan Programs »