views:

97

answers:

4

Hi, I have two .NET dll's, where one calls some methods located on the other.

I need to know what methods exactly are being called between those two dlls to map the dependencies between these two dlls. (No public interface is available).

Any idea which tool does the job?

+12  A: 

Reflector

Chris Lively
A: 

Reflector is your best bet. You can use if for free - http://www.red-gate.com/products/reflector/

NET Reflector is a class browser and analysis tool for .NET, that allows you to navigate, search, disassemble and analyze .NET components.

Nicholas Mayne
+3  A: 

Reflector as everyone else has mentioned, but then use a dependency plugin!

Dependency Structure Matrix Plugin

or

Graph

Mike Ohlsen
A: 

ILDASM will also do the job.

code4life