无法添加ftrScanApi.dll引用

时间:2016-07-19 05:16:32

标签: c# dll window

我正在尝试将ftrScanApi.dll引用添加到我的窗口应用程序中,但它给出了错误:

  

“无法添加对... dll的引用。请确保   文件是可访问的,并且它是有效的程序集或COM组件。“

我已经尝试了所有在线提供的帮助,但无法解决问题。

1 个答案:

答案 0 :(得分:0)

看起来你还没有足够的googled:仔细检查A reference to the dll could not be added

I want a solution for this : Please make sure that the file is accessible and that it is a valid assembly or COM component

基本上,你不能通过"添加参考"在视觉工作室中添加原生dll。

如果您知道该dll的方法,请尝试使用dllimport How to use [DllImport("")] in C#?

编辑: 更多谷歌搜索显示dll是用c ++编写的。您可以找到头文件here - 这将帮助您获取该DLL的方法/函数。