Activity overview
Latest activity by thewildkiwi
If I have a method that is called from multiple branches in the hierarchy, the time shown whereever I see that method in the hierarchy is for ALL the calls made to that method, not just for the branch that I am viewing.
For example:
DBInterface.GetDataSet() - is called from CPerson.ReadData() and CAddress.ReadData() yet when I drill down to CPerson.ReadData() it shows the combined time for DBInterface.GetDataSet() from both CPerson.ReadData() and CAddress.ReadData().
I do not know if it is CPerson or CAddress that is causing the problem because they both report the same time.
Note: this is not a real example, the method I want to look at is used very many times from many classes.
Thanks,
TheWildKiwi. / comments
If I have a method that is called from multiple branches in the hierarchy, the time shown whereever I see that method in the hierarchy is for ALL the calls made to that method, not just for the bra...
Method times reflect all calls in hierarchy - child only?
I can drill down to methods but they are displaying times for ALL calls not just for the calls within a branch of the tree.
Can the method times in the hierarchy display the time for calls for chil...