在VC编写的Dll程序中:
extern "C" __declspec(dllexport) LPTSTR SendMessageDemo()
{
LPTSTR str="hello the world!";
return str;
}
在C#Web应用程序中调用Dll,首先将编译的Dll程序中debug目录下*.dll文件加入到C#Web应用程序bin目录下,在WebForm1.aspx.cs文件中加入代码:
using System.Runtime.InteropServices;
在public class WebForm1 : System.Web.UI.page声明开始加入代码:
[DllImport("MotorControlDll.dll",EntryPoint="SendMessageDemo",ExactSpelling=false,CallingConvention=CallingConvention.Cdecl)]
public static extern string SendMessageDemo();
要注意:在Dll中SendMessageDemo()的返回值类型是LPTSTR,而在Web应用程序中返回值类型是String。
然后可以直接调用SendMessageDemo()。
至于其中的原因我也不很清楚,希望有高手能解释一下,并且想请教一下,是不是有更好的方法。
转载于:https://www.cnblogs.com/pc1123/archive/2004/09/11/42232.html