As Bob Nadler mentioned that Thread.Sleep(1) does not a guarantee a sleep time of 1ms.
Here is an example using the Win32 multimedia timer to force a sleep of 1ms.
[DllImport(winmm.dll)]
DllImport("winmm.dll")]
internal static extern uint timeBeginPeriod(uint period);
[DllImport(winmm.dll)]
DllImport("winmm.dll")]
internal static extern uint timeEndPeriod(uint period);
timeBeginPeriod(1);
while(true)
{
Thread.Sleep(1); // will sleep 1ms every time
}
timeEndPeriod(1);
Testing this in a C# GUI application, I found that the application used about 50% of my CPU.
For more discussion on this topic see the following forum thread:
