We are writing every article every day. C# program to demonstrate the use of Minutes property of TimeSpan structure Let’s see clearly about this article today.

C# program to demonstrate the use of Minutes property of TimeSpan structure
using System;
class TimeSpanDemo
{
//Entry point of Program
static public void Main()
{
TimeSpan timeSpan = new TimeSpan(600000000 * 2);
Console.WriteLine("Minutes in given ticks:"+ timeSpan.Minutes);
}
}
Minutes in given ticks:2
Press any key to continue . . .
Final Words
C# program to demonstrate the use of Minutes property of TimeSpan structure We hope you find this article useful. Let us know if you have any doubts.