无法使用 Assembly.Load() 获取预加载的程序集

发布于 2024-12-05 05:44:32 字数 397 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

泛滥成性 2024-12-12 05:44:32

您需要提供完全限定名称Assembly.Load [Assembly].Load("Assembly text name, Version, Culture, PublicKeyToken")

例如

Assembly.Load("ActivityLibrary, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null");

参考:

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.

Assembly.Load("ActivityLibrary, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null");

Ref:

http://geekswithblogs.net/rupreet/archive/2010/02/16/137988.aspx

http://msdn.microsoft.com/en-us/library/x4cw969y.aspx

清引 2024-12-12 05:44:32

我的预感是你不能使用 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 from pathtomyassembly 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.

怪我鬧 2024-12-12 05:44:32

我最终循环通过 AppDomain.CurrentDomain.GetAssemblies() 来获取我的程序集。

public static Assembly GetAssemblyFromAppDomain(string assemblyName)
{
    foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
    {
        if (assembly.FullName.StartsWith(assemblyName + ",")) 
        {
            return assembly;
        }
    }
    return null;   
}

一切似乎都运转良好。

I ended up looping through AppDomain.CurrentDomain.GetAssemblies() to get my assembly.

public static Assembly GetAssemblyFromAppDomain(string assemblyName)
{
    foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
    {
        if (assembly.FullName.StartsWith(assemblyName + ",")) 
        {
            return assembly;
        }
    }
    return null;   
}

Everything seems to work fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文