Basically, what I need is something like Dependecy Walker, but it should work with .NET applications. Is there anywhere such tool?
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Should I use static function in c# where many call
ildasm.exe
works for this purpose as well.ildasm.exe
lists a tree of namespaces, types, methods, etc. on loading an assembly.And you can view all dependencies of the assembly by double clicking MANIFEST, and searching for lines starting with
.assembly extern
.ildasm.exe
comes with Visual Studio or .NET SDK installations, so chances are you've got it on your computer.I prefer ILSpy. It's an open-source .NET assembly browser and decompiler. And yes, it shows dependencies.
Decent replacement for Reflector which is not free anymore.