无法使用 Assembly.Load() 获取预加载的程序集
我正在使用 Assembly.LoadFrom("pathtomyassemble") 在 Application_Start() 中预加载程序集。
为什么我无法使用 Assembly.Load("MyAssemblyName") 获取程序集,就像使用从 bin 目录自动加载的任何其他程序集一样。
有没有一种方法可以做到这一点,而无需每次都使用程序集路径调用 LoadFrom() ?
更新:
奇怪的是,当我使用时,
AppDomain.CurrentDomain.GetAssemblies()
我可以看到我的程序集已加载到 AppDomain 中。
有没有办法在不循环程序集的情况下获得它?
I am preloading an assembly in the Application_Start() using Assembly.LoadFrom("pathtomyassembly").
Why am I not able to get my assembly using Assembly.Load("MyAssemblyName") just like I can with any other assembly loaded automatically from the bin directory.
Is there a way to do this without calling LoadFrom() with the assembly path every time?
UPDATE:
The weird thing is, when I use
AppDomain.CurrentDomain.GetAssemblies()
I can see that my assembly is loaded in the AppDomain.
Is there a way to get it without looping through the assemblies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要提供完全限定名称
Assembly.Load [Assembly].Load("Assembly text name, Version, Culture, PublicKeyToken")
。例如
参考:
http://geekswithblogs.net/rupreet/archive/2010/ 02/16/137988.aspx
http://msdn.microsoft.com/en-us/library/x4cw969y.aspx
you need to supply fully qualified name
Assembly.Load [Assembly].Load("Assembly text name, Version, Culture, PublicKeyToken")
.E.g.
Ref:
http://geekswithblogs.net/rupreet/archive/2010/02/16/137988.aspx
http://msdn.microsoft.com/en-us/library/x4cw969y.aspx
我的预感是你不能使用
Assembly.Load("MyAssemblyName")
因为你的程序的 bin 目录中没有匹配的 DLL。您的构建脚本需要手动将该 DLL 从pathtomyassemble
复制到程序的 bin 目录,或者您需要将其添加为解决方案中的链接,并确保选中“复制到输出目录” 。My hunch is you can't use
Assembly.Load("MyAssemblyName")
because there's no matching DLL in your program's bin directory. Your build script would need to manually copy that DLL frompathtomyassembly
to your program's bin directory, or you'd need to add it as a link in your solution and make sure "Copy to Output Directory" is checked.我最终循环通过 AppDomain.CurrentDomain.GetAssemblies() 来获取我的程序集。
一切似乎都运转良好。
I ended up looping through AppDomain.CurrentDomain.GetAssemblies() to get my assembly.
Everything seems to work fine.