2

我正在从我的托管 c# 代码中调用一个非托管 dll,并想检查我是否调用了正确的版本。

我试图加载程序集的代码(然后获取资源文件然后获取版本)是: cur_version = Assembly.LoadFile("X:\Workspace\yreceipts_pos\yRprintProcessor\Debug\yRprintProcessor.dll"); 由于此错误,它失败了: The module was expected to contain an assembly manifest. (Exception from HRESULT: 0x80131018)

有谁知道如何解决这个问题或有更好的方法从托管 c# 代码中检查非托管 dll 的版本?

在此先感谢,理查德

4

2 回答 2

7

如逻辑np所述;Assembly.Load 仅适用于托管程序集。要确定任何版本文件的版本,您可以使用 System.Diagnostics.FileVersionInfo.GetVersionInfo(filename) 并在 DLL 中加载和调用非托管过程,您可以参考以下文章:

http://blogs.msdn.com/jonathanswift/archive/2006/10/02/780637.aspx http://blogs.msdn.com/jonathanswift/archive/2006/10/03/Dynamically-calling-an-unmanaged -dll-from-.NET-_2800_C_23002900_.aspx

祝你好运...

于 2010-03-17T06:01:41.073 回答
4

它失败的原因是因为您不能使用 Assembly.Load 加载非托管 dll。请参阅 David Brown 建议的链接。

于 2010-03-17T05:10:37.193 回答