how can i use a time delay in a loop after certain rotation? Suppose:
for(int i = 0 ; i<64;i++)
{
........
}
i want 1 sec delay after each 8 rotation.
|
|
|
There are a lot of ways to do that:
This is a horrible thing to do; the operating system will assume that you are doing useful work and will assign a CPU to do nothing other than spinning on this. Never do this unless you know that the spin will be only for a few microseconds. Basically when you do this you've hired someone to watch the clock for you; that's not economical.
Sleeping a thread is also a horrible thing to do, but less horrible than heating up a CPU. Sleeping a thread tells the operating system "this thread of this application should stop responding to events for a while and do nothing". This is better than hiring someone to watch a clock for you; now you've hired someone to sleep for you.
This makes efficient use of resources; now you are hiring someone to cook eggs and while the eggs are cooking, they can be making toast. However it is a pain to write your program so that it breaks up work into small tasks.
The down side of that is of course C# 5 is only in beta right now. |
|||
|
|
|
If you want a sleep after each 8 iterations, try this:
|
|||
|
|
|
Use Thread.Sleep (from System.Threading):
|
|||||||
|
|
You may also want to just look into using a It will allow you to execute some block of code (repeatedly or not) after an interval of time. Without more context it would be hard to say for sure if that's best in your situation or how you would go about altering your solution accordingly. |
|||
|
|