show/hide this revision's text 2 added 627 characters in body

No, it will not. You'll barely see it. Approximately Somewhere less than 1000 times a second this thread will wake up and do next to nothing before sleeping again.

Edit:

I had to check. Running on Java 1.5 , this test

@Test
public void testSpeed() throws InterruptedException {
    long currentTime = System.currentTimeMillis();
    int i = 0;
        while (i < 1000)
        {
            Thread.sleep(1);
            i++;
        }
    System.out.println("Executed in " + (System.currentTimeMillis() - currentTime));
}

Ran at approximately 500 sleeps per second on my 3ghz machine. I suppose C# should be fairly much the same. I assume someone will report back with C# numbers for this intensely important real-world benchmark. There was no observable CPU usage, by the way.

show/hide this revision's text 1

No, it will not. You'll barely see it. Approximately 1000 times a second this thread will wake up and do next to nothing before sleeping again.