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

请注意,必须使用 命名空间限定Timer属性Microsoft.VisualBasic,因为 Timer 也是 、 System.TimersSystem.Windows.Forms 命名空间中System.Threading定义的类。

注解

属性 Timer 返回自最近午夜以来的秒数和毫秒数。 秒在返回值的整数部分,毫秒在小数部分。

适用于

另请参阅