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

C# 调用 c++ 非托管dll时wchar类型参数的乱码处理

时间:2017-04-27 19:39:20      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:dll   port   class   .dll   imp   托管   string   att   char   

1         [DllImport("user32.dll", CallingConvention = CallingConvention.WinApi)]
2         public static extern IntPtr FindWindow(
3             [MarshalAsAttribute(UnmanagedType.LPWStr)] string lpWindowClass,
4             [MarshalAsAttribute(UnmanagedType.LPWStr)] string lpWindowName
5         );

在相应的参数前加上 [MarshalAsAttribute(UnmanagedType.LPWStr)] ,这样就不会导致乱码了

C# 调用 c++ 非托管dll时wchar类型参数的乱码处理

标签:dll   port   class   .dll   imp   托管   string   att   char   

原文地址:http://www.cnblogs.com/nicobilipoi/p/6775443.html

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