标签:com http blog img log c ext t string sp int
在C#中调用别人的DLL的时候有时候出现 尝试读取或写入受保护的内存 。这通常指示其他内存已损坏。
在传值的时候还是用指针,再在C#中做转换就好了。
解决办法:
[DllImport("APPLISTCC.dll")]
public static extern string TestFunc1(string param1);
string ret1 = TestFunc1("text");
改成:
[DllImport("APPLISTCC.dll")]
public static extern IntPtr TestFunc1(IntPtr par1);
IntPtr ptrIn = Marshal.StringToHGlobalAnsi("text");
IntPtr ptrRet = TestFunc1(ptrIn);
string retlust = Marshal.PtrToStringAnsi(ptrRet);
自己在程序里强制释放COM资源,调用Marshal.ReleaseComObject()方法将不再使用的对象释放掉
C# 尝试读取或写入受保护的内存 。这通常指示其他内存已损坏。,码迷,mamicode.com
C# 尝试读取或写入受保护的内存 。这通常指示其他内存已损坏。
标签:com http blog img log c ext t string sp int
原文地址:http://www.cnblogs.com/jordan2009/p/3695869.html