是否可以将 delphi vcl/Dll 与 asp.net 集成?
这意味着我想调用delphi VCL/DLL中的函数来检索信息。 这可能吗?
Which mean I want to call function in delphi VCL/ DLL to retrieve information.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果 dll 不是 .Net,您将需要使用 Platform Invoke [DllImport] 调用。
在这里查看 Windows API 示例 (http://pinvoke.net/) ,它应该可以帮助您调用 delphi dll。
Yes, if the dll is not .Net you will need to use Platform Invoke [DllImport] calls.
Have a look here for windows API examples here (http://pinvoke.net/) which should help you call your delphi dlls.