gpt4 book ai didi

c# - 64 位类型库和 32 位类型库不同步

转载 作者:太空狗 更新时间:2023-10-29 20:36:54 25 4
gpt4 key购买 nike

这个问题让我头疼了几天,一直找不到原因。我很确定这是我的机器特有的环境问题,但它仍然给我带来测试问题。

我正在使用 Visual Studio 2010 Professional 在 C# 中创建 DLL。版本一如下;

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace TestCOM
{
[ClassInterface(ClassInterfaceType.AutoDual)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.ProgId("TestCOM.Class1")]
[System.Runtime.InteropServices.Guid("803A1B2F-1CDA-4571-9084-87500388693B")]
public class Class1
{
public void showMessage()
{
MessageBox.Show("Hello from TextCom");
}

}
}

这个程序集编译得很好,一切都很好。我运行以下脚本将其注册为 COM 对象(首先用于 32 位,然后用于 64 位);

C:\Windows\Microsoft.NET\Framework\v4.0.30319\regasm.exe TestCOM.dll /codebase /nologo /tlb:TestCOM32.tlb
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\regasm.exe TestCOM.dll /codebase /nologo /tlb:TestCOM64.tlb

然后使用下面的脚本进行测试;

dim tc 
set tc = CreateObject("TestCOM.Class1")
tc.showMessage()

我使用 csript 来测试脚本,因此我可以控制它使用的位深度 - 我用 32 位测试一次,用 64 位测试一次。到目前为止一切都很好。

现在,当我修改原来的程序集添加一个函数时,如下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace TestCOM
{
[ClassInterface(ClassInterfaceType.AutoDual)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.ProgId("TestCOM.Class1")]
[System.Runtime.InteropServices.Guid("803A1B2F-1CDA-4571-9084-87500388693B")]
public class Class1
{
public void showMessage()
{
MessageBox.Show("Hello from TextCom");
}

public void HelloWorld()
{
MessageBox.Show("Hello World!!");
}

}
}

在修改之前,我使用“regasm/unregister”注销库,它报告所有类型注销成功。

当我注册库时,现在有了更改,原始测试脚本可以完美运行。如果我扩展测试脚本以调用新的 HelloWorld 函数;

在 32 位脚本中,它工作得很好。在 64 位脚本中,它提示 TestCOM.Class1 对象不存在这样的函数

我已经尽我所能尝试了这个方法,但我无法确定为什么新函数对 32 位调用者可用,但对 64 位调用者不可用。

我做错了什么?是否有我不知道的 64 位内容的缓存,或者需要更改的注册表设置?

要清楚; 1.构建组件 2.使用regasm注册,一次32次,一次64次 3. 使用脚本测试 - 一切正常 4.注销库 5. 修改、重建 6. 按步骤 2 注册 7. 测试适用于 32 位,但不适用于 64 位。Wtf?

最佳答案

很明显,您正在遭受 DLL Hell 的困扰,COM 始终伴随着它,它正在加载旧版本的 DLL。您的 GAC 可能已被早期实验污染,它总是会首先找到 GACed 版本。你通过指定 [Guid] 使情况变得更糟,使你的新类看起来与旧类相同,即使它不相同。防止 COM 告诉您它找不到该类的新版本。

查看 DLL 来源的最可靠但最可靠的方法是使用 SysInterals 的 ProcMon 实用程序。您将看到它读取注册表项并加载 DLL。你可以看到它来自哪个目录。确保它不是 GAC,如果是这种情况,请使用 gacutil/u 将其删除,并确保通过检查文件上的时间戳来重建它。

关于c# - 64 位类型库和 32 位类型库不同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15223584/

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