Visual Studio: real-time method call trace?

This is what I am looking for: I would like to get a list of method calls in real time when I debug my program. For example, let's say I run my program through the debugger, if I press a button or do something in my program, I would like it to spit out, say, in the visual studio plug-in, in real time, all the methods that it went through when I clicked this button or did some action with my program.

I actually once wrote a visual studio plugin that does this using the visual studio api profiler (I had to write a dll C ++ com server that receives this information and passes it back to my C # plugin). I did this a few years ago, and I have no idea where I said it. But I'm wondering if Microsoft did something similar in visual studio 2010 or if you know some third-party plugins like this because it is a very convenient debugging utility.

thank

+3
source share
4 answers

Check the Visual Studio 2010 Intellitrace feature - it can get what you need: http://msdn.microsoft.com/en-us/library/dd264915.aspx

+1
source

IntelliTrace Visual Studio 2010. x86,

0

Source: https://habr.com/ru/post/1753413/