我正在寻找一个可以每隔x分钟运行我的程序或功能的Timer的例子。 我只找到了Windows Form项目的示例,但没有找到控制台应用程序。
答案 0 :(得分:0)
这是How can we use timer control in VB.Net Console Application?
的答案Module Module1
Sub Main()
aTimer.AutoReset = True
aTimer.Interval = 2000 '2 seconds
AddHandler aTimer.Elapsed, AddressOf tick
aTimer.Start()
Console.ReadKey()
End Sub
Dim aTimer As New System.Timers.Timer
Private Sub tick(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs)
Console.WriteLine("tick")
End Sub
End Module