我在 C# 上创建了 Windows 服务。现在我有扫描数据库的方法。我需要每分钟调用此方法两次。其实我不知道在 Windows 服务中等待的方法。我试过 Thread.Sleep ......但什么也没发生。请帮我解决这个问题。
private int wait;
protected void Start()
{
wait = 1000;
while (true)
{
if (wait < 30000)
wait += wait;
//implement logic for waiting
Video video = new Video();
video.FindFileForConvert();
if (video.Path != null)
{
Console.WriteLine("video != null. video path = {0}", video.Path);
video.BeginConvertation();
video.DeleteOriginFile();
wait = 1000;
}
}
}