gpt4 book ai didi

c# - 从 C# 应用程序调用 C++ dll 时找不到入口点

转载 作者:行者123 更新时间:2023-11-30 20:27:39 24 4
gpt4 key购买 nike

我有简单的 C++ dll 函数:

__declspec(dllexport) int tst1(int a);

int tst1(int a)
{
return a + 1;
}

我有调用它的 C# 应用程序:

[DllImport("Project1.dll")] 
public static extern int tst1(int i);

static void Main(string[] args)
{
Console.WriteLine( tst1(1) );
Console.ReadLine();
}
}

得到 EntryPointNotFoundException 错误:

enter image description here

我做错了什么?

最佳答案

名称被 C++ 破坏了 decoration .添加 extern "C" 以防止名称混淆:

extern "C" __declspec(dllexport) int tst1(int a);

关于c# - 从 C# 应用程序调用 C++ dll 时找不到入口点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48429333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com