Home »
.Net »
C# Programs
C# - TimeSpan.TotalHours Property with Example
In this tutorial, we will learn about the C# TimeSpan.TotalHours property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.TotalHours Property
The TimeSpan.TotalHours property is read-only which is used to represent the total hours 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.TotalHours;
Parameter(s)
Return Value
This property returns a double value that represents the number of hours in the current instance of the TimeSpan structure.
C# Example of TimeSpan.TotalHours Property
The source code to demonstrate the use of TotalHours 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("Hours in TimeSpan: " + timeSpan.TotalHours);
}
}
Output
Created TimeSpan values:2.13:35:44.2130000
Hours in TimeSpan: 61.5956147222222
Press any key to continue . . .
C# TimeSpan Programs »