5
Answers

delay in c#?

asic

asic

20y
4.3k
1
hi all in c++ i can make delay with a fuction called delay(t) how can i implement it in c# without using timer control thanks for help
Answers (5)
0
asic

asic

NA 100 0 20y
hi thanks too much it works.............i thought that i have to define threads to use this command............but it works thanks too much
0
Mykonine

Mykonine

NA 520 0 20y
Thread.Sleep still works in a single threaded application.
0
asic

asic

NA 100 0 20y
hi i wanna delay the peogram............i wanna it to wait for a specific time.........like in c++ but i am not using processes...............just normal code thanks for help
0
joy.simpson

joy.simpson

NA 228 0 20y
Delay of one second for argument of (1000). Change argument in Sleep for more or less time. System.Threading.Thread.Sleep(1000);
0
bilnaad

bilnaad

NA 686 0 20y
What is delayed by the function?