I have a 5k lines software that is running, and it is running at 50% CPU usage. It's quite high, and I used some 3rd party assemblies. So can I from Visual Studio, determine which part of my code is running, without using breakpoint? Using breakpoint won't detect CPU usage, because the program is not running when it stop at that particular point.
I am using visual studio 2010, c#.
Thanks.