C 源代码到 DLL 以在 C# 应用程序中使用

发布于 2024-11-02 18:35:49 字数 152 浏览 0 评论 0 原文

我有一个用 VC++6.0 编写的 C 源代码,我需要在我正在编码的 C# 应用程序中使用该代码。

我做了一些事情来实现这一点,我已经在发布模式下运行了该 C 源文件,并生成了 middle.manifest 文件和其他文件,我可以使用这些文件中的任何一个来解决我的问题吗?

I have a C source code written in VC++6.0 and I need that code to be used in a C# application which I am coding.

I have done few things to make that happen, I have run that C source file in release mode and have generated the intermediate.manifest file and the other files there, can I use any of these file to make my problem solved.

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

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

发布评论

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

评论(3

轮廓§ 2024-11-09 18:35:49

您想要做的是导入 dll,如下所示:

 [DllImport("user32.dll")]//This is where you identify your dll...
   public static extern int MessageBoxA(  //This would be an object from your dll
      int h, string m, string c, int type);

   public static int Main() 
   {
      return MessageBoxA(0, "Hello World!", "My Message Box", 0);
   }

您需要搜索以了解此内容的关键字是“运行非托管代码”和“PInvoke ”。

What you want to do is import the dll like this:

 [DllImport("user32.dll")]//This is where you identify your dll...
   public static extern int MessageBoxA(  //This would be an object from your dll
      int h, string m, string c, int type);

   public static int Main() 
   {
      return MessageBoxA(0, "Hello World!", "My Message Box", 0);
   }

The keywords that you need to search on to learn about this are "running unmanaged code" and "PInvoke".

走走停停 2024-11-09 18:35:49

另一种替代方法是将 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#

我早已燃尽 2024-11-09 18:35:49

如果您愿意用 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.

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