0
wait time keyword
Does anyone know if there is a keyword in C # that is used to make wait time?
6 Answers
+ 2
thread.sleep (5000);
from system.threading
notice the parameter is in milliseconds, so this one waits 5 seconds
+ 2
are you looking for a delay ?
https://www.dotnetperls.com/sleep
+ 1
What is spwos? đ
0
"spwos" was a writing mistake
0
yes I'm looking for it
0
thanks that's helps me