我有 ac Sharp dll。如何使其可用于其他语言,例如 PHP 或 Delphi?
我有一个用C Sharp 开发的dll。如何使其可用于其他语言,例如 PHP 或 Delphi?
我还找不到解决这个问题的方法。难道没有什么简单的方法可以做到这一点吗?
I have a dll developed in C Sharp. How can I make it usable in other languages, such as PHP or Delphi?
I cannot find any solution to this problem yet. Isn't there any easy way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 Delphi 可以理解 COM,那么您可以为 . NET DLL。
我现在正在为一个不理解 .NET 的旧 IDE 执行此操作,但它理解 COM,因此我能够在旧应用程序中使用最新的 .NET 功能。
If Delphi can understand COM, then you can make a COM wrapper around the .NET DLL.
I am doing this now for an older IDE which doesn't understand .NET, but it understands COM so I am able to use the latest .NET features in my older applications.
除了 COM 之外,您还可以尝试这些(从我的 Delphi Win32 到 WCF答案)对于 Delphi Win32:
最后一个可能是你真正想要的。
对于 PHP 来说,情况就不同了;
--jeroen
In addition to COM, you could try these (from my Delphi Win32 to WCF answer) for Delphi Win32:
The last one might be the real one you are after.
For PHP it is a different story;
--jeroen