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