在 Delphi 中使用.NET COM DLL 时抛出异常

发布于 2024-11-09 00:05:43 字数 476 浏览 0 评论 0原文

我有一个使用 VS2010 在 C# 中生成的 COM DLL,在 VS2910 中使用它,它工作正常,但是当我尝试使用 Delphi 7 中的 DLL(导入了 .tlb 文件)时,某些函数工作正常,但其中一个似乎生成以下错误。
无法加载文件或程序集“InnovateCV,Version=1.0.0.0,Culture=neutral,PublicKeyToken=c06107b7da48b1da”或其依赖项之一。系统找不到指定的文件。
不幸的是,它不知道加载失败的原因,InnovateCV 是我的 DLL,并且已加载,从异常中获取更多信息,数据值为“System.Collections” .ListDictionaryInternal'。不幸的是,我的 COM DLL 正在调用第三方 .NET DLL,这就是引发异常的地方。有什么办法可以找到加载失败的内容。

我尝试过使用 Depends.exe,并且没有发现它可以看到的 DLL。

任何帮助将不胜感激。

I have a COM DLL produced in C# using VS2010, using it from VS2910, it works fine, but when I try to use the DLL from Delphi 7, having imported the .tlb file, some of the functions work fine, but one seems to generate the following error.
Could not load file or assembly 'InnovateCV, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c06107b7da48b1da' or one of its dependencies. The system cannot find the file specified.
unfortunatly it have no idea what is failing to load, the InnovateCV is my DLL, and is loaded, getting more information from the exception the Data value is 'System.Collections.ListDictionaryInternal'. Unfortunally my COM DLL is calling a third party .NET DLL, which is where the exception is being thrown. Is there any way to find what it is failing to load.

I've tried using Depends.exe, and there are no DLL's mising that it can see.

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疾风者 2024-11-16 00:05:43

解决了问题,这是 Delphi 应用程序和 .NET 应用程序之间的 DLL 名称冲突,因此 Delphi 应用程序无法在 DLL 中找到所需的函数,我还必须将所有 DLL 放在同一个中目录作为 Delphi App。现在它正在工作。感谢您的帮助。

Solved the problem, it was a clash of DLL names, between the Delphi App, and the .NET App, so the Delphi App, was failing to find the required function in the DLL, I also had to put all the DLL's in the same directory as the Delphi App. And its now working. Thanks for the Help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文