I have a code which when run, it executes series of lines in sequence. I would like to add a pause in between.
Currently, I have it like this
//do wo
You're sleeping the thread for 10800 seconds, or 3 hours. Thread.Sleep() is designed to freeze your thread, stop anything from working in the software for that duration. In this case, the duration is 18 minutes. What are you trying to do?