C# TimeSpan Hours
Description
TimeSpan Hours
gets the hours component of the time interval
represented by the current TimeSpan structure.
Syntax
TimeSpan.Hours
has the following syntax.
public int Hours { get; }
Example
The following example creates several TimeSpan objects and displays the Hours property of each.
using System;// w w w . j av a2 s .c om
class TimeSpanPropertiesDemo
{
static void Main( )
{
TimeSpan ts = new TimeSpan( 98712345678 );
Console.WriteLine(ts.Hours);
}
}
The code above generates the following result.