C#DllImport传参
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#DllImport传参相关的知识,希望对你有一定的参考价值。
引用c++的一个dll,有一函数原型是getJumbIcon(CONST TCHAR *filePath)c#里参数类型应该怎么定义,传的是字符串
参考技术A [DllImport("user32.dll", EntryPoint = "SendMessage")]public static extern int SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); 参考技术B 直接用 string 就可以
以上是关于C#DllImport传参的主要内容,如果未能解决你的问题,请参考以下文章