Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想扫描目录中尚未在项目中引用的任何程序集,然后加载实现 IMyInterface 的类的所有实例。
我知道Assembly.LoadFile方法可以帮助我,但我如何确定我正在加载的程序集是否已经被静态引用?我不想两次加载任何程序集。
您可以使用AppDomain.GetAssemblies查看哪些已加载。
AppDomain.GetAssemblies