1

我有一个类库,我正在调用一个外部 dll。我有一个 Web 应用程序正在调用使用外部 dll 方法的类库。Web 应用程序在 Web 应用程序的 bin 目录中查找外部 dll。如何设置 dll 导入的目录,以便在我的 Web 应用程序中的文件夹中查找 dll,即 /webapp/externaldll/external.dll

这是我在类库中用于加载 dll 和调用函数的代码。

[DllImport("External.dll", CharSet = CharSet.Unicode)]
    static extern Int32 Calink(
        string sCode,
        out int SubscriberID,
        out int MailshotID,
        out int LinkID
    );

   Int32 retvalptr = CALinkDecode(sCode, out cas,
                                           out cam, out cal);
4

0 回答 0