views:

238

answers:

1

Anyone have any ideas or experience using program-slicing techniques for debugging OO projects in MS Visual Studio 2008? Tool suggestions would be helpful.

+2  A: 

IMHO, real useful program slicing tool often come within static analysis tools, for example, CodeSurfer for C++ and Clang of LLVM. If you're looking for C# tool and/or Visual Studio plugin, see What static analysis tools are available for C#.

However, they're not perfect implementation to the academic research results, please be aware of that.

Mike Jiang