我在 C++ 方面不是那么好,但是,.. 例如我有这个
#define GETSomthing_API __declspec(dllexport)
extern GETSomthing_API int nGetSomthing;
我想像这样导入的方法
GETSomthing_API int GetSomthing(const char* szConfigPath, char *A, int B)
我如何从 C# 调用它?
此外,我认为我的问题在于 C++ 端的参数类型(const char*),C# 中的相等类型是什么!常量字符*
谢谢,