I am looking for a tool to trace the dlls being loaded into a process on windows. The app i have is loading managed and unmanaged dlls, but not sure if the managed ones are loading the unmaanged ones. Process Explorer and File Explorer doesn't seem to help much. Any thoughts?? thanks!!
相关问题
- 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
As of version 2.0, Dependency Walker can do dynamic application profiling. This allows you to see what modules a running application is loading, as opposed to just seeing what is in the static import tables.
Procmon is the best tool I know of, though its level of detail can be overwhelming.