我正在开发 Unity Plugin 项目并尝试从 c# 文件导入 c++ 本机 dll。但我不断收到 dllnotfoundexception。
c++ dll代码:
extern "C" {
extern __declspec( dllexport ) bool IGP_IsActivated();
}
c#代码:
[DllImport("mydll")]
private static extern bool IGP_IsActivated();
Dll 已就位且 FIle.Exists 正常工作。所有依赖的 dll 都存在于同一层次结构中,但我仍然以 dllnotfound 异常告终。
任何帮助,非常感谢!