TimeSpan.TotalMinutes 屬性
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前 TimeSpan 結構的值,這個值以整數和小數的分鐘數表示。
public:
property double TotalMinutes { double get(); };
C#
public double TotalMinutes { get; }
member this.TotalMinutes : double
Public ReadOnly Property TotalMinutes As Double
這個執行個體表示的完整分鐘數。
下列範例會具現化 TimeSpan 物件,並顯示其 TotalMinutes 屬性的值。 它也會顯示每個元件的值 (秒,毫秒) 形成其 TotalMinutes 屬性值的小數部分。
C#
// 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
// Define an interval of 1 day, 15+ hours.
let interval = TimeSpan(1, 15, 42, 45, 750)
printfn $"Value of TimeSpan: {interval}"
printfn $"{interval.TotalMinutes:N5} minutes, as follows:"
printfn $" Minutes: {interval.Days * 24 * 60 + interval.Hours * 60 + interval.Minutes,5}"
printfn $" Seconds: {interval.Seconds,5}"
printfn $" Milliseconds: {interval.Milliseconds,5}"
// 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
這個屬性會將這個實例的值從刻度轉換為分鐘數。 此數位可能包含整數和小數分鐘。
屬性 TotalMinutes 代表整數和小數分鐘,而 Minutes 屬性則代表整分鐘。
產品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1 |
UWP | 10.0 |