码迷,mamicode.com
首页 > 编程语言 > 详细

C#调用C++dll

时间:2015-05-18 16:05:20      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

C# 调用C++DLL的问题“尝试读取或写入受保护的内存。这通常指示其他内存已损坏。”

2014-09-01 17:10匿名  分类:C/C++ | 浏览 697 次  悬赏:15
 C#调用C++ 的DLL
错误为:“尝试读取或写入受保护的内存。这通常指示其他内存已损坏。”

[DllImport("dmailnewclient.dll", EntryPoint = "?dmail_create@@YAHAAIAAUehInformation@@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z", CharSet = CharSet.Ansi,SetLastError = true, CallingConvention = CallingConvention.StdCall)]
public static extern int Dmail_Creat(uint handle, ehInformation ehInfor, string errdesc, UInt16 flag = 0);
调用:
string errdesc ="111";
int temp = dmailnewclient.Dmail_Creat(t,ehinfo, errdesc);
两边string不是同一个类型,不能通用。

C#无法正确使用C++的string类型。
C++那边应该改为const char*或者const wchar_t*
如果用前者,C#那边CharSet要改为ANSI

C#调用C++dll

标签:

原文地址:http://www.cnblogs.com/lovemyhuangmei/p/4512069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!