将 .lib 和 .h 文件转换为 .NET

发布于 2024-12-10 14:19:44 字数 156 浏览 1 评论 0原文

一家经纪公司有一个围绕 C++ 构建的 API,作为库和头文件提供给用户使用(订单、价格、新闻等),长话短说,我只有 C# 的实践知识,并且想利用一些包装技术以利用通过将它们转换为托管 DLL 提供的 .lib 和 .h 文件。有没有一种方法可以在不涉及太多 C++ 编码/包装的情况下做到这一点?

A brokerage firm has an API built around C++ provided as a library and header files for users to consume(orders, prices, news..etc), long story short, I only have practical knowledge of C# and would like to make use of some wrapping technologies to make use of the .lib and .h files provided by converting them into managed DLLs. Is there a way of doing this without getting involved in much C++ coding/wrapping?

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

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

发布评论

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

评论(1

a√萤火虫的光℡ 2024-12-17 14:19:44

您可以使用 C++/CLI。尝试从这里开始
基本上,我会创建一个 C++/CLI 包装器,以便向 C# 公开一组明智的功能。
无论如何,这都不是一件容易的事。
另一种方法是用纯 C++ 编写库的一些外部“C”入口点,并使用 P/Invoke 访问该 api。

You can use C++/CLI. Try to starts from here.
Basically I would create a C++/CLI wrapper in order to expose a wise set of functionality to c#.
Anyway, it is not an easy task.
An alternative is to write in pure c++ some extern "C" entry point to the library and access that api using P/Invoke.

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