C 源代码到 DLL 以在 C# 应用程序中使用
我有一个用 VC++6.0 编写的 C 源代码,我需要在我正在编码的 C# 应用程序中使用该代码。
我做了一些事情来实现这一点,我已经在发布模式下运行了该 C 源文件,并生成了 middle.manifest 文件和其他文件,我可以使用这些文件中的任何一个来解决我的问题吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您想要做的是导入 dll,如下所示:
您需要搜索以了解此内容的关键字是“运行非托管代码”和“PInvoke ”。
What you want to do is import the dll like this:
The keywords that you need to search on to learn about this are "running unmanaged code" and "PInvoke".
另一种替代方法是将 C 代码包装在托管 C++ 中。 Microsoft 称之为 C++/CLI。无论如何,然后您可以从该包装器编译一个“程序集”。程序集只是一个包含托管代码的 DLL。然后,您可以从完全托管的 C# 应用程序“引用”(链接的托管等效项)该“包装器”。
所以依赖关系可能如下所示:
C ->托管 C++ -> C#
Another alternative is to wrap the C code in managed C++. Microsoft calls it C++/CLI. Anyways, you then compile an 'assembly' from that wrapper. An assembly is just a DLL that contains managed code. Then you can 'reference' (the managed equivalent of linking) that 'wrapper' from a fully managed C# application.
So the dependency could look like this:
C -> Managed C++ -> C#
如果您愿意用 C++ 封装 C 代码,则可以按照 此 微软指南。它详细介绍了如何在 C++ 中创建 dll。如果您需要更深入的解释,请随时回复我,我会尝试快速提供操作方法。
如果您使用不同的 IDE 或环境,也请告诉我,我可以调整答案以更准确地满足您的需求。
可能会在今天晚些时候,但目前时间紧迫。
If you are comfortable enough wrapping up c code in c++ you could easily make a dll by following this microsoft guide. It details how to go about creating a dll in C++. If you need a more in-depth explanation though feel free to get back to me, and I will try and knock up a quick how-to.
Also let me know if you use a different IDE or environment and I can taylor the answer to suit your needs more precisely.
Might be later on today though as am pressed for time at the moment.