TimeSpan.TotalMinutes 属性

定义

获取以整分钟数和分钟的小数部分表示的当前 TimeSpan 结构的值。Gets the value of the current TimeSpan structure expressed in whole and fractional minutes.

public:
 property double TotalMinutes { double get(); };
public double TotalMinutes { get; }
member this.TotalMinutes : double
Public ReadOnly Property TotalMinutes As Double

属性值

Double

此实例表示的总分钟数。The total number of minutes represented by this instance.

示例

下面的示例实例化一个 TimeSpan 对象并显示其属性的值 TotalMinutesThe following example instantiates a TimeSpan object and displays the value of its TotalMinutes property. 它还显示每个组件的值 (秒、毫秒) ,构成其属性值的小数部分 TotalMinutesIt also displays the value of each component (seconds, milliseconds) that forms the fractional part of the value of its TotalMinutes property.

// Define an interval of 1 day, 15+ hours.
TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); 
Console.WriteLine("Value of TimeSpan: {0}", interval);

Console.WriteLine("{0:N5} minutes, as follows:", interval.TotalMinutes);
Console.WriteLine("   Minutes:      {0,5}", interval.Days * 24 * 60 +  
                                            interval.Hours * 60 + 
                                            interval.Minutes);
Console.WriteLine("   Seconds:      {0,5}", interval.Seconds);
Console.WriteLine("   Milliseconds: {0,5}", interval.Milliseconds);

// 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
Module Example
   Public Sub Main()
      ' Define an interval of 1 day, 15+ hours.
      Dim interval As New TimeSpan(1, 15, 42, 45, 750) 
      Console.WriteLine("Value of TimeSpan: {0}", interval)
      
      Console.WriteLine("{0:N5} minutes, as follows:", interval.TotalMinutes)
      Console.WriteLine("   Minutes:      {0,5}", interval.Days * 24 * 60 + _ 
                                                  interval.Hours * 60 + _
                                                  interval.Minutes)
      Console.WriteLine("   Seconds:      {0,5}", interval.Seconds)
      Console.WriteLine("   Milliseconds: {0,5}", interval.Milliseconds)
   End Sub
End Module
' 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

注解

此属性将此实例的值从刻度转换为分钟。This property converts the value of this instance from ticks to minutes. 此数字可能包括整分钟和分钟的小数部分。This number might include whole and fractional minutes.

TotalMinutes属性表示整分钟数,而 Minutes 属性表示整分钟数。The TotalMinutes property represents whole and fractional minutes, whereas the Minutes property represents whole minutes.

适用于

另请参阅