Equivalent of Delay in C#?
C#
3
Posts
2
Posters
0
Views
1
Watching
-
hi! How could i implement delay in c#? that will logicallylook like this:
while { process1(); delay(5); }
thanks!!! -
hi! How could i implement delay in c#? that will logicallylook like this:
while { process1(); delay(5); }
thanks!!!Use the Thread.Sleep() method. Regards Senthil
-
Use the Thread.Sleep() method. Regards Senthil
Thanks Senthil!!!:)