gpt4 book ai didi

c# - Windows 7 64 位上带有 Assembly.LoadFile 的 FileNotFoundException

转载 作者:太空宇宙 更新时间:2023-11-03 11:23:57 25 4
gpt4 key购买 nike

我正在尝试加载一个混合的托管/ native dll,我为 32 位和 64 位编译了它。如果我在 Windows 7 32 位上运行我的程序,我可以毫无问题地加载 32 位 dll。如果我加载 64 位 dll,我会得到 BadImageFormatException,这正是我所期望的。

我遇到的问题是当我在 Windows 7 64 位下做同样的测试时:

如果我加载 32 位 dll,我会得到 BadImageFormatException。到目前为止没问题。

但是如果我加载 64 位 dll,我会得到 FileNotFoundException。而这个信息是不正确的,因为我事先检查了这个dll的存在!

谁能告诉我,为什么我不能在 Windows 7 64 位下加载我的 64 位 dll?

这是我的示例代码:

    private void Button32_Click(object sender, RoutedEventArgs e)
{
string path = System.IO.Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, "x86", "Native.dll");
LoadAssembly(path);
}
private void Button64_Click(object sender, RoutedEventArgs e)
{
string path = System.IO.Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, "amd64", "Native.dll");
LoadAssembly(path);
}

void LoadAssembly(string path)
{
if(File.Exists(path))
{
MessageBox.Show("Loading " + path);
Assembly asm = null;
try
{
asm = Assembly.LoadFile(path);
}
catch(Exception ex)
{
MessageBox.Show("Exception!!!\n" + ex);
}
MessageBox.Show("Success " + (asm == null ? "no" : "yes"));
}
}

最佳答案

您应该尝试了解无法加载哪个程序集,因为您尝试加载的程序集可能包含无法找到的引用。或存在引用,但适用于 32 位,而不是 64 位版本

尝试使用Fusion log确切知道缺少哪个程序集

关于c# - Windows 7 64 位上带有 Assembly.LoadFile 的 FileNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10085120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com