This depends on the problem. If you are simply waiting to check is a process has completed, using Sleep is a very bad solution. In this case I would use the BackgroundWorker.
System.ComponentModel.BackgroundWorker bg = new System.ComponentModel.BackgroundWorker();
This allows you to run the code on a separate thread, and you can check the status of the operation every x seconds (using a Timer) by checking the following property:
bg.IsBusy
This will allow a much more contained solution to checking if your code has run and completed, without freezing up your entire application and particularly your UI thread.
Alternatively, if you are simply waiting 15 seconds, you could use Thread.Sleep but you do run the risk of untimely responses in your application, or if it's user facing, a very frustrated user.
BackgroundWorker MSDN
Hope this helps,
Kyle