Mostly out of curiosity, I started programming a small \"Metro Style\" project in Visual Studio 2011, the one that was released in Windows Developer Preview. It combines XAML fo
There is no Thread.Sleep(), but you can use Task.Delay(milliseconds);
Thread.Sleep()
Task.Delay(milliseconds);
For those wondering what is it useful for, I say I use it in debug to stress async behaviour.