Question

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);
Était-ce utile?

La solution

"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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top