سؤال

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