I\'d like to list all the methods that are called from a specific method. E.g. if I have the following code:
public void test1() {
test2();
test3();
you can use .NET Reflector tool if you want to pay. you could also take a look at this .NET Method Dependencies it gets tricky though, as you're going to be going into the IL. A third possible would be to use the macro engine in VS, it does have a facility to analyze code,CodeElement, I'm not sure if it can do dependencies though.