我需要在system.threading.timer提供的winRT中使用相同的功能。我在Windows.System.Threading中找到了ThreadPoolTimer.CreatePeriodicTimer(TimerElapsedHandler,TimeSpan,TimerDestroyedHandler)方法;但无法执行以下功能。
实际上,我必须在winRT中编写以下代码,因为我无法执行;
system.threading.timer timer;
timer = new Timer(CleanupThreadCallback, null, cleanupFrequenceMS, cleanupFrequenceMS)
and
timer.change(_cleanupFrequency, _cleanupFrequency);