共用方式為


DateAndTime.Timer 屬性

定義

傳回表示從午夜後所經過秒數的 Double 值。

public:
 static property double Timer { double get(); };
public static double Timer { get; }
static member Timer : double
Public ReadOnly Property Timer As Double

屬性值

值,表示自午夜以來經過的秒數。

範例

這個範例會 Timer 使用 屬性暫停應用程式。 它可以在暫停期間執行其他處理。

Public Sub waitFiveSeconds()
    If TimeOfDay >= #11:59:55 PM# Then
        MsgBox("The current time is within 5 seconds of midnight" & 
            vbCrLf & "The timer returns to 0.0 at midnight")
        Return
    End If
    Dim start, finish, totalTime As Double
    If (MsgBox("Press Yes to pause for 5 seconds", MsgBoxStyle.YesNo)) =
         MsgBoxResult.Yes Then

        start = Microsoft.VisualBasic.DateAndTime.Timer
        ' Set end time for 5-second duration.
        finish = start + 5.0
        Do While Microsoft.VisualBasic.DateAndTime.Timer < finish
        ' Do other processing while waiting for 5 seconds to elapse.
        Loop
        totalTime = Microsoft.VisualBasic.DateAndTime.Timer - start
        MsgBox("Paused for " & totalTime & " seconds")
    End If
End Sub

請注意,您必須使用 Microsoft.VisualBasic 命名空間限定 Timer 屬性,因為 Timer 也是、 System.TimersSystem.Windows.Forms 命名空間中的System.Threading已定義類別。

備註

屬性 Timer 會傳回自最近午夜以來的秒數和毫秒數。 秒位於傳回值的整數部分,而毫秒則位於小數部分。

適用於

另請參閱