我有一个类库,我称之为外部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);