There is a very large asp.net project. In which there are about 100 dll-k. There is some action on the site. Is it possible to look at the call trees of methods from the specified libraries without resorting to standard debugging. Debugging for each library separately is not possible.

I know for sure that in SQL Server there is a ' Profiler ' tool that lists all the called saves, I would like something like this.

    1 answer 1

    A very handy tool for profiling called dotTracer from jetBrains. Allows you to see not only the call trees, but also the time of each method, find bottlenecks and so on. You can not just treysit web applications. In general, I cannot imagine application optimization, especially large ones, without it. The only negative is that it is paid for, like the other products of this company, but finding it hacked is not difficult.

    • Thank. Exactly what you need - Pavel S. Zaitsau