Debug Assistant
Debug Assistant records program execution, and presents an execution flow line by line.
You can then examine what has happened in your code. You can also replay the executions in
Visual Studio code window. An optimized algorithm makes line by line trace
possible while still maintaining program's performance. Debug Assistant is the only software in
the market that can displays execution flow. Areas of usage including:
Debug
Profiling
Coverage
Debug Assistant is not intended as a debugger itself. Instead, it works as a tool to
help locating problems in your code by telling you what code has just run and in what
sequences. It also displays time indicator for each line of code, and percentage of
time each line spent inside of a function. Debug Assistant's execution replay allows
user to sit back and watch program execution replay in the code windows. As
a Visual Studio package, it is tightly integrated with Visual Studio IDE.
Better yet, it instruments program on the fly, you don't need to do anything with your
code, or change any of your project settings. Read more ...
Code Summarizer (Free)
Code Summarizer is like an electronic map to your code.
To Visual Studio programmers, it is like a roadmap to the forests of the code file. Code
Summarizer stays beside your code windows, and lets you jump from one position to
another without losing context. You can zoom in and out the map view handily with
the mouse wheel as with Microsoft Virtual Earth. You can zoom in/out the map view
geometrically or syntactically. It allows you view your code in very compact form
while still showing significant information. Since version 3.1, Code Summarizer has been
released as fully free software. Read more ...
|
|