The MSDN docs say Thread.Sleep() can be used in a portable class library. The compiler says otherwise. What are my alternatives besides a spin-loo
Thread.Sleep()
You can use Task.Delay in System.Threading.Tasks
Task.Delay
System.Threading.Tasks