TimeSpan.TotalHours Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value of the current TimeSpan structure expressed in whole and fractional hours.
Assembly: mscorlib (in mscorlib.dll)
The following example instantiates a TimeSpan object and displays the value its TotalHours property. It also displays the value of each component (hours, minutes, seconds, and milliseconds) that forms the fractional part of the value of its TotalHours property.
using System; public class Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { // Define an interval of 1 day, 15+ hours. TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); outputBlock.Text += String.Format("Value of TimeSpan: {0}\n", interval); outputBlock.Text += String.Format("{0:N5} hours, as follows:\n", interval.TotalHours); outputBlock.Text += String.Format(" Hours: {0,3}\n", interval.Days * 24 + interval.Hours); outputBlock.Text += String.Format(" Minutes: {0,3}\n", interval.Minutes); outputBlock.Text += String.Format(" Seconds: {0,3}\n", interval.Seconds); outputBlock.Text += String.Format(" Milliseconds: {0,3}\n", interval.Milliseconds); } } // The example displays the following output: // Value of TimeSpan: 1.15:42:45.7500000 // 39.71271 hours, as follows: // Hours: 39 // Minutes: 42 // Seconds: 45 // Milliseconds: 750
Show: