I am trying to performance test some code. I am using a stopwatch. When I output the number of milliseconds it always tells me 0 so I thought that I would try the number of ticks. I am seeing that the number of ticks is about 20 000 to 30 000. Looking at the MSDN at TimeSpan.TicksPerMillisecond it says that is 10 000 ticks per millisecond. In that case why are the elapsed milliseconds on my stopwatch not appearing as 2 or 3?
What am I missing? I have even outputed the result on the same line. This is what I get.
Time taken: 26856 ticks, 0 ms
And it is constant.
EDIT (Added some code) This is my code which I have running in a loop. I realize that I am creating a new stopwatch everytime which isn't very efficient but I don't see how it could skew my results. Thanks guys
Dim SW = New Stopwatch()
SW.Reset()
SW.Start()
MethodCall()
SW.Stop()
Console.WriteLine(String.Format("Time to increase counters: {0} ticks, {1} ms", SW.ElapsedTicks, SW.ElapsedMilliseconds))