English 中文(简体)
使用C++/CLI而不是C#来包扎(第三方)C-图书馆(dll)有什么好处?
原标题:What are the advantages of using C++/CLI instead of C# for wrapping a (third party) C-library (dll)?

我有一个第三方的 C 图书馆, 我需要从 C # 使用。 系统的其他部分都用 C # 写, 所以使用 C++/ CLI 只能作为包装纸的选项 。

使用 C++/ CLI 包扎 C 图书馆而不是 C# 的好处是什么? 创建 C# 包扎器是否有好处?

这些图书馆包含一些建筑、一些建筑和许多功能。

编辑 : 能否在 C # 中使用 C 支架和 enums, 不包装它们?

最佳回答

使用 C++/CLI 的好处是您可以在同一组装中写出本地代码和管理代码。

使用 C++/ CLI 时, 与 C 图书馆的互动更容易, 您通常可以与您的图书馆合作, 通常使用所有. NET 接口或课程, 并且仍然曝光完全管理的. NET 接口或课程。 当然, C++/ CLI 会增加一些复杂性 。

另一方面,在 C# 中, 您需要重新声明所有的支架, 并使用 Dllimport 在 C# 中再次声明您的 C 功能 。

使用 C# 和 PInvoke 就可以了。 如果使用完整的 API 需要大量结构再定义、 插针、 转换等等, C++/ CLI 可能是更好的选择 。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签