我想知道如何强制我的窗口服务重新启动或停止,如果它已经运行了大约 30 分钟。
就像是:
if(service.runs == 30 mins){
service.stop()
or
service.restart()
}
顺便说一句,我正在使用 C#。我在这里使用一个线程。这就是我的 OnStart 的样子:
Thread myThread;
protected override void OnStart(string[] args){
myThread = new Thread(new ThreadStart(this.myThreadFunction));
myThreadFunction.Start();
}
请帮忙。谢谢