调用c中的Delphi DLL;“试图读取或写入受保护的内存.”错误

本文关键字:受保护 错误 内存 读取 Delphi 中的 DLL 调用 | 更新日期: 2023-09-27 18:22:25

我正在尝试导入一个delphi dll并使用它的方法。

这是delphi方法的签名:

function CALinkEncode(SubscriberID, MailshotID, LinkID: DWORD; sCode: PWideChar): HRESULT; stdcall; 

以下是导入dll并使用函数的c#代码。

    [DllImport(@"Decoder.dll", CharSet = CharSet.Ansi)]
    static extern string CALinkEncode(
        int SubscriberID,
        int MailshotID,
        int LinkID
    );
    public static string CALinkDecodeString(int cas, int cam, int cal)
    {
        string retvalptr = CALinkEncode(cas, cam, cal);
        return retvalptr;
    }

请帮忙。

调用c中的Delphi DLL;“试图读取或写入受保护的内存.”错误

您缺少一个参数,返回类型错误,字符集错误。应该是:

[DllImport(@"Decoder.dll", CharSet = CharSet.Unicode)]
static extern uint CALinkEncode(
     uint SubscriberID,
     uint MailshotID,
     uint LinkID,
     string sCode
 );

我假设字符串参数是一个输入参数。如果不是,则需要将其声明为StringBuilder,并传递一个具有足够容量的StringBuilder实例作为输出缓冲区。