methodA()
{
using (method a)
{
foreach(var v in collection)
{
using (loop iteration)
{
using (step a)
{
//Do Something
}
using (step b)
{
//Do Something
}
}
}
}
}
Is there a way to see the timings of all step a grouped? In the normal otuput I see
step a: 34 ms
step b: 54 ms
step a: 34 ms
step b: 54 ms
step a: 34 ms
step b: 54 ms
step a: 34 ms
step b: 54 ms
step a: 34 ms
step b: 54 ms
Is there any news on this? I want to group calls to the same class/method since its being used multiple places. Having its not grouped is just useless waste.