将 MS.NET C# 嵌入到 c/c++ (如单声道)
是否可以将 MS C# 编译器嵌入到非托管 c/c++ 主机应用程序中并使两种语言进行互操作,就像 Mono 所做的那样(例如 此处和此处)?
我有一个使用 mono 的基于 Qt 的 C++ 应用程序的工作实现,但我受到 Windows 上 mono 的 32 位约束的限制(我确实需要内存)(Windows 没有 64 位版本)。那么这可以通过“原始”C# 实现来实现吗?
顺便说一句:我想继续使用 GNU 编译器 (mingw-w64)。
Is it possible to embed the MS C# compiler into an umanaged c/c++ host application and make both languages interoperate, very much like Mono does this (like here and here)?
I have a working implementation of this für my Qt based C++ Application using mono, but I'm limited (I really need the memory) by the 32bit constraint of mono on Windows (there are no 64bit releases for windows). So can this be achived with "the original" C# implementation?
BTW: I'd like to continue using GNU compilers (mingw-w64).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
微软确实支持这一点;他们的术语是托管。
Microsoft does support this; their term for it is hosting.
如果你特别想使用C#编译器,那么Mono的C#编译器是托管的,而微软的C#编译器是原生的。有些差异是你无法克服的。
If you specifically want to use C# compiler, then Mono's C# compiler is managed, while Microsoft's C# compiler is native. There are some differences you cannot conquer.