I am creating an assembly programaticly and I want to reference to dll that I have on the disk How to do that with this code.

AssemblyName assemblyNameObj = new AssemblyName(assemblyName);
AssemblyBuilder assemblyBuilder = AppDomain.CurrentDomain.DefineDynamicAssembly(assemblyNameObj, AssemblyBuilderAccess.RunAndSave);
有帮助吗?

解决方案

"Referencing" the assembly is a compile time feature. Since this is a dynamically generated assembly, it doesn't exist at compile time.

You would need to use Assembly.Load or similar to load the assembly after you create it, then use Reflection to instantiate the appropriate types within that assembly.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top