我正在导入具有定义的函数
__declspec(dllexport) int __stdcall karacell_bridge(
int argumentCount, char *argContent[])
从 C DLL 到 MS Visual Studio C# 项目。如何在 C# 中重新定义参数 char *argContent[]?
我可以使用MarshalAs
吗?public static extern int karacell_bridge( int argumentCount, string[] argContent)
或者在 C#中定义它是否正确?