vote up -2 vote down star
for(int i=0; i<mylist.items.count; i++)
{
   if(i==myvalue[i])
   {
     //call Timer! Wait timer interval if timer is tick, continue for loop!
   }

   timer_click()
   {
   // application
   }
}

How can I use the for loop with timer to pause execution if the value in the conditional is a certain value?

flag

30% accept rate

4 Answers

vote up 0 vote down

i'm not sure if I understand the question but you should read about the stopwatch class

link|flag
vote up 4 vote down

You shouldn't. Why do you want to, or what are you trying to do by this?

Use Thread.Sleep() if you want the loop to stop for a period of time.

link|flag
vote up 1 vote down

Well you could use Thread.Sleep() no? But you really should have a good reason to put a timer on the server side, it's not considered a good thing.

link|flag
vote up 0 vote down

Why would you ever want to pause execution of something? This would certainly make for a poor user experience. Think before you use it.... But like others have said ... its

Thread.Sleep(some ms);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.