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传参的主要内容,如果未能解决你的问题,请参考以下文章

C#DllImport是干嘛的

c语言 不允许 dllimport 函数 的定义 怎么办

C# - DLLImport 和函数默认值

c#使用DllImport调用c++dll的函数

有啥方法可以调试从 C# DllImport 调用的 c++ dll?

DllImport使用