TimeSpan.TotalMinutes 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前 TimeSpan 結構的值,這個值以整數和小數的分鐘數表示。
public:
property double TotalMinutes { double get(); };
public double TotalMinutes { get; }
member this.TotalMinutes : double
Public ReadOnly Property TotalMinutes As Double
屬性值
這個執行個體表示的完整分鐘數。
範例
下列範例會具現化 TimeSpan 物件,並顯示其 TotalMinutes 屬性的值。 它也會顯示每個元件的值 (秒,毫秒) 形成其 TotalMinutes 屬性值的小數部分。
// 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 屬性則代表整分鐘。