C# 上的 C++/CLI DLL 无法编译

发布于 2024-08-27 06:39:01 字数 250 浏览 4 评论 0原文

我为一些本机 c++ 函数编写了一个包装器 DLL,并在 c++/CLI 中对其进行了编译,然后我添加了对 C# 项目的引用,函数在那里指示,但是当我尝试编译项目时,出现此错误:

其他信息:无法加载文件或程序集“lib,Version=1.0.3742.39593,Culture=neutral,PublicKeyToken=null”或其依赖项之一。尝试加载格式不正确的程序。

有什么问题吗?

I wrote a wrapper DLL for some native c++ functions and compiled it in c++/CLI, then I added a reference to C# project, functions indicates there, but when I try compile project I get this error:

Additional information: Could not load file or assembly 'lib, Version=1.0.3742.39593, Culture=neutral, PublicKeyToken=null' or one of its dependencies. An attempt was made to load a program with an incorrect format.

What's the problem ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国际总奸 2024-09-03 06:39:01

64 位与 32 位不兼容是导致该错误的最常见原因。

在 C# 项目的 项目设置页面 中,您的 Platform target 将设置为 Any CPU。这意味着在 64 位系统上,程序将在 64 位进程中运行。然后它将无法加载针对 32 位的 DLL(本机 DLL 无法切换以适应该进程。)

因此您需要将其设置为 x86。在 VS2010 中,新项目默认为 x86。

64-bit vs 32-bit incompatibility is the most common cause of that error.

In the Project settings page of the C# project your Platform target will be set to Any CPU. This means that on a 64-bit system the program will run in a 64-bit process. It will then be unable to load DLLs that target 32-bit (native DLLs can't switch to suit the process.)

So you need to set it to x86. In VS2010 the default will be x86 for new projects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文