Home »
.Net »
C# Programs
C# - TimeSpan.TotalMinutes Property with Example
In this tutorial, we will learn about the C# TimeSpan.TotalMinutes property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.TotalMinutes Property
The TimeSpan.TotalMinutes property is read-only which is used to represent the total minutes of the current instance in the TimeSpan structure. Here we create an instance of TimeSpan and initialized with days, hours, minutes, seconds, and milliseconds.
Syntax
double TimeSpan.TotalMinutes;
Parameter(s)
Return Value
This property returns a double value that represents the number of minutes in the current instance of the TimeSpan structure.
C# Example of TimeSpan.TotalMinutes Property
The source code to demonstrate the use of TotalMinutes property of TimeSpan structure is given below. The given program is compiled and executed successfully.
using System;
class TimeSpanDemo {
// Entry point of Program
static public void Main() {
// Here we create instance timespan and
// initialized with days, hours, minutes, second,
// and milliseconds
TimeSpan timeSpan = new TimeSpan(2, 13, 35, 44, 213);
Console.WriteLine("Created TimeSpan values:" + timeSpan);
Console.WriteLine("Minutes in TimeSpan: " + timeSpan.TotalMinutes);
}
}
Output
Created TimeSpan values:2.13:35:44.2130000
Minutes in TimeSpan: 3695.73688333333
Press any key to continue . . .
C# TimeSpan Programs »