Posts

Showing posts from December, 2009

Things I love about Visual Studio 2010: IntelliTrace

Image
IntelliTrace is the next step in evolution for debuggers. It allows you to track everything that is happening during a debug session. It can track actions like clicking on a button, reading for a file, executing an ADO.NET call (including the actual call !) and a lot of other things. You can think of IntelliTrace as some sort of log for all actions of the program. You can also record the call stack for each event but it will slow down the debugging experience and you won't be able to use the "Edit and Continue" feature anymore, but it will allow to have much more details about the execution context of each event.