Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我花了两天时间在网上搜索有关如何在我的 Delphi 6 上注册 System.XML.dll 的任何提示。
有人可以引导我最终在我的 Delphi 上导入这个吗?我想使用 SignedXML。
提前谢谢!
System.XML.dll 是一个 .net 库。因此,您不能轻易地从像 Delphi 这样的本机开发工具中使用它。您可以将其包装在 COM 对象中。或者您可以使用 .net API 来启动 .net 运行时。或者,您可以使用 Robert Giesecke 的 Unmanaged Exports 使 .net 库可以从您的本机代码中使用。
但是,所有这些选项都相当复杂。找到满足您需求的本地库可能会更好。