Aracılığıyla paylaş


TimeSpan.TotalMilliseconds Özellik

Tanım

Geçerli TimeSpan yapının tam ve kesirli milisaniye cinsinden ifade edilen değerini alır.

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

Özellik Değeri

Bu örnek tarafından temsil edilen toplam milisaniye sayısı.

Örnekler

Aşağıdaki örnek bir TimeSpan nesnenin örneğini oluşturur ve özelliğinin TotalMilliseconds değerini görüntüler.

// 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("There are {0:N5} milliseconds, as follows:", interval.TotalMilliseconds);
long nMilliseconds = interval.Days * 24 * 60 * 60 * 1000 + 
                     interval.Hours *60 * 60 * 1000 + 
                     interval.Minutes * 60 * 1000 + 
                     interval.Seconds * 1000 + 
                     interval.Milliseconds;
Console.WriteLine("   Milliseconds:     {0,18:N0}", nMilliseconds);
Console.WriteLine("   Ticks:            {0,18:N0}", 
                  nMilliseconds * 10000 - interval.Ticks);

// The example displays the following output:
//       Value of TimeSpan: 1.15:42:45.7500000
//       There are 142,965,750.00000 milliseconds, as follows:
//          Milliseconds:            142,965,750
//          Ticks:                             0
// Define an interval of 1 day, 15+ hours.
let interval = TimeSpan(1, 15, 42, 45, 750) 
printfn $"Value of TimeSpan: {interval}" 

printfn $"There are {interval.TotalMilliseconds:N5} milliseconds, as follows:"
let nMilliseconds = int64 interval.Days * 24L * 60L * 60L * 1000L + 
                    int64 interval.Hours * 60L * 60L * 1000L + 
                    int64 interval.Minutes * 60L * 1000L + 
                    int64 interval.Seconds * 1000L + 
                    int64 interval.Milliseconds
printfn $"   Milliseconds:     {nMilliseconds,18:N0}" 
printfn $"   Ticks:            {nMilliseconds * 10000L - interval.Ticks,18:N0}"

// The example displays the following output:
//       Value of TimeSpan: 1.15:42:45.7500000
//       There are 142,965,750.00000 milliseconds, as follows:
//          Milliseconds:            142,965,750
//          Ticks:                             0
Option Strict On

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("There are {0:N5} milliseconds, as follows:", interval.TotalMilliseconds)
      Dim nMilliseconds As Long = interval.Days * 24 * 60 * 60 * 1000 + _
                                     interval.Hours *60 * 60 * 1000 + _
                                     interval.Minutes * 60 * 1000 + _
                                     interval.Seconds * 1000 + _
                                     interval.Milliseconds
      Console.WriteLine("   Milliseconds:     {0,18:N0}", nMilliseconds)
      Console.WriteLine("   Ticks:            {0,18:N0}", nMilliseconds * 10000 - interval.Ticks)
   End Sub
End Module
' The example displays the following output:
'       Value of TimeSpan: 1.15:42:45.7500000
'       There are 142,965,750.00000 milliseconds, as follows:
'          Milliseconds:            142,965,750
'          Ticks:                             0

Açıklamalar

Bu özellik, bu örneğin değerini değer değerlerinden milisaniyeye dönüştürür. Bu sayı tam ve kesirli milisaniye içerebilir.

TotalMilliseconds özelliği tam ve kesirli milisaniyeleri, özelliği ise Milliseconds tam milisaniyeyi temsil eder.

Şunlara uygulanır

Ayrıca bkz.