Find slow point in .Net code

8

I need to parse a code that is taking too long to execute, the method code is extensive and makes several calls to other methods, I've been debugging to try to identify the slow point, but this is very difficult .

Does Visual Studio have any tools that help me in this, to find this point of slowness?

    
asked by anonymous 14.01.2016 / 12:14

1 answer

8

You need a profiler . It is the only tool that can do this in the right way.

Visual Studio has something like that. There are official documentation with lots of details about this .

Other tools available:

14.01.2016 / 12:23