[SOLVED] How can I make my code wait before running the next line?

I would like to make my code wait before running the next line to make my win screen more interesting for Terminal Hacker.
I have tried googling it, but I haven’t been able to find anything that works (or that I can understand).
This is my code:

Hi Rayzy,

Were you able to make your code pause? If so, what was your solution?

I continued to search google for answers until I found a solution that worked.
I added using System.Threading.Tasks; to the top of my code. And then added await Task.Delay(3000); whenever I wanted a pause to occur.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms