14

我用单一方法编写了.Net 3.5 dll,由Delphi .exe调用。不幸的是,它不起作用。

步骤: 1. 使用代码创建 C# 3.5 dll:

public class MyDllClass
{
    public static int MyDllMethod(int i)
    {
        MessageBox.Show("The number is " + i.ToString());
    }
}
  1. 转到 Assembly Properties --> Assembly Information 并检查“Make Assembly COM-Visible”
  2. 使用 RegAsm.exe 注册我的 dll

这会引发 Delphi 异常,表明它无法连接 dll。从非托管代码启用 C# 托管 dll 的使用需要哪些步骤。

有没有人熟悉这个主题的好例子?

谢谢

4

3 回答 3

38

通过使用我的项目模板进行非托管导出,您可能会更幸运地跳过 COM 部分

class MyDllClass
{
    [DllExport]
    static int MyDllMethod(int i)
    {
        MessageBox.Show("The number is " + i.ToString());
        return i + 2;
    }
}

在 Delphi 中,您可以像这样导入它:

function MyDllMethod(i : Integer) : Integer; stdcall; extern 'YourAssembly.dll';

不过,我不得不否决你的问题。因为甚至不关心提供可以编译的代码。(您的 C# 方法不返回值,但它期望为 int)

于 2011-05-30T10:48:07.523 回答
9

经过大量调查,我找到了解决方案:这都是关于注册参数的。标志 /codebase 必须添加到 regasm 命令。

许多帖子建议在 C# Com 公开对象上使用 Guid 和其他 COM 属性,我设法使用 ComVisible(true) 属性和 regasm /tlb /codebse 命令提供 COM 功能。

编码:

[Guid("7DEE7A79-C1C6-41E0-9989-582D97E0D9F2")]
[ComVisible(true)]
public class ServicesTester
{
    public ServicesTester()
    {
    }

    //[ComVisible(true)]
    public void TestMethod()
    {
        MessageBox.Show("You are in TestMEthod Function");
    }
}

正如我提到的,我使用 regasm.exe /tlb /codebase 来注册它

于 2011-06-22T07:42:40.860 回答
2

如果您制作了 x64 或 AnyCPU 组件,可能会出现问题。由于 Delphi 是 32 位 (x86),您需要将程序集设置为 x86 或确保 regasm.exe 也在 32 位注册表中注册它。您可以通过使用 x86 版本的 regasm.exe 来做到这一点。

于 2011-05-30T10:08:59.700 回答