質問

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