TimeSpan.TotalMinutes Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value of the current TimeSpan structure expressed in whole and fractional minutes.
Assembly: mscorlib (in mscorlib.dll)
The following example instantiates a TimeSpan object and displays the value of its TotalMinutes property. It also displays the value of each component (seconds, milliseconds) that forms the fractional part of the value of its TotalMinutes property.
using System; public class Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { // Define an interval of 1 day, 15+ hours. TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); outputBlock.Text += String.Format("Value of TimeSpan: {0}", interval) + Environment.NewLine; outputBlock.Text += String.Format("{0:N5} minutes, as follows:", interval.TotalMinutes) + Environment.NewLine; outputBlock.Text += String.Format(" Minutes: {0,5}", interval.Days * 24 * 60 + interval.Hours * 60 + interval.Minutes) + Environment.NewLine; outputBlock.Text += String.Format(" Seconds: {0,5}", interval.Seconds) + Environment.NewLine; outputBlock.Text += String.Format(" Milliseconds: {0,5}", interval.Milliseconds) + Environment.NewLine; } } // The example displays the following output: // Value of TimeSpan: 1.15:42:45.7500000 // 2,382.76250 minutes, as follows: // Minutes: 2382 // Seconds: 45 // Milliseconds: 750
Show: