Thread.Sleep doesn\'t seem to be supported in .NET for Windows Store apps.
For example, this
System.Threading.Thread.Sleep(1000);
Hate to state the obvious but in case anybody wanted a single line System.Threading.Tasks.Task.Delay(3000).Wait()
System.Threading.Tasks.Task.Delay(3000).Wait()