Why would the performance profiler show 839 ms for line 1 and 1000 ms for line 6? The profiler is set to wall clock time.

I am using ANTS Performance Profiler 7.0 downloaded last week on Windows XP, Visual Studio 2010, and C# code.

1 int n = TestSleep(1000);
2 Debug.WriteLine(string.Format("n: {0}", n));
3}

4private int TestSleep(int ms)
5{
6 Thread.Sleep(ms);
7 return 123;
8}

Thank you for your help.
Olaf
[/url]
OlafMeding
0

Comments

1 comment

  • Chris.Allen
    That's rather odd - I just tried it and got, respectively:

    1000.240 ms

    &

    1000.027

    Feel free to send your results to us at support and we'll take a look.
    Chris.Allen
    0

Add comment

Please sign in to leave a comment.