How to get Names of DLLs used by application

前端 未结 6 973
旧巷少年郎
旧巷少年郎 2021-01-11 09:26

I\'m looking the way to read all assemblies (.dlls) used by my app.

In a standard C# project there is \"References\" folder, when it is expanded I can read all lib

6条回答
  •  耶瑟儿~
    2021-01-11 10:07

    You can use AppDomain.GetAssemblies.
    But this will give ALL assemblies used explicitly or implicitly in your application.

提交回复
热议问题