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