Thread.Sleep in WinRT
static void Sleep(int ms)
{
   new System.Threading.ManualResetEvent(false).WaitOne(ms);
}

相关文章: