What do those numbers mean exactly? Times the line was hit? Microseconds per invocation? Or what?
Also, what do the 'progress-bars' behind the numbers mean? They aren't even proportional to the numbers, so I'm really confused.
What do those numbers mean exactly? Times the line was hit? Microseconds per invocation? Or what?
Also, what do the 'progress-bars' behind the numbers mean? They aren't even proportional to the numbers, so I'm really confused.
Dear Stefan, These numbers represent the number of calls to the corresponding statements. Please note, that a single C# construct may correspond to several statements. Thus for example "for" loop contains 3 statements. The number is surrounded with a rectangle if this statement takes a significant amount of time an the ratio of this time is painted with light-blue inside the rectangle.
best wishes, Michael