C# TimeSpan TicksPerHour
Description
TimeSpan TicksPerHour
represents the number of ticks
in 1 hour. This field is constant.
Syntax
TimeSpan.TicksPerHour
has the following syntax.
public const long TicksPerHour
Example
The following example references and displays the value of the TicksPerHour field.
/* w ww.ja va 2 s . c om*/
using System;
class TimeSpanFieldsDemo
{
static void Main( )
{
Console.WriteLine( TimeSpan.TicksPerHour );
}
}
The code above generates the following result.