码迷,mamicode.com
首页 > Windows程序 > 详细

C#调用C接口字符参数编码的问题解决方法

时间:2014-11-13 16:47:12      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:c#   string   unicode   

1、传入单字节ANSI字符

[DllImport("hostIO", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]

    public static extern int initHost([MarshalAs(UnmanagedType.LPStr)] string host);


2、传入双字节Unicode字符

[DllImport("hostIO", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]
    public static extern int initHost([MarshalAs(UnmanagedType.LPWStr)] string host);

C#调用C接口字符参数编码的问题解决方法

标签:c#   string   unicode   

原文地址:http://blog.csdn.net/wuliao009/article/details/41079179

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