You can use the Elapsed event on the System.Timers Timer. Timer timer = new Timer(30 * 60 * 1000); timer.Elapsed += OnTick; // Which can also be written as ...
確定! 回上一頁