我的项目是一个应用程序,我们在其中加载各种程序集并对它们执行操作.
我们陷入了这样一种情况:我们需要添加对我们加载的程序集的引用(将由用户选择).所以我需要在运行时添加对DLL的引用.
我试过这个网站,但在这里他们只支持像System.Security等微软DLL.我想添加对用户创建的dll(类库)的引用.
您不能在运行时"添加引用" - 但您可以加载程序集 - Assembly.LoadFrom
/ Assembly.LoadFile
等等.问题是除非使用s,否则无法卸载它们AppDomain
.有了之后Assembly
,您可以使用assemblyInstance.GetType(fullyQualifiedTypeName)
通过反射创建实例(然后可以将其转换为已知接口等).
对于一个简单的例子:
// just a random dll I have locally... Assembly asm = Assembly.LoadFile(@"d:\protobuf-net.dll"); Type type = asm.GetType("ProtoBuf.ProtoContractAttribute"); object instance = Activator.CreateInstance(type);
此时我可以instance
转换为已知的基本类型/接口,或继续使用反射来操纵它.