ANVIZ T5 Pro 卡 Reader 连接到 C# Windows 项目
ANVIZ T5 Pro Card Reader connect to C# Windows Project
我有 ANVIZ T5 Pro Proximity reader,但我没有合适的 SDK。
所以我在安装位置 "CrossChex" application.
中找到了 DLL 文件
现在我调用了 DLL 文件,
- ACE.DLL
- AvzScanner.DLL
- FaceSdk_V1.0.ocx
- FaceSdk_V2.0.ocx
- Facial.DLL
当我在 C# 应用程序中添加 .dll 文件作为引用时,它显示错误:
A reference to the "....dll" could not be added.Please make sure that the file is accessible and that it is a valid assembly or COM component.
当我添加 DLL 时,它出现以下错误信息。
因为DLL的编译版本。
您必须像这样导入本机编写的 dll:
[DllImport("tc400.dll")]
public static extern int methodName();
它将是 class 的方法,您可以在其中声明它。
但是您必须知道方法名称才能包含它并使用。
祝你好运
我有 ANVIZ T5 Pro Proximity reader,但我没有合适的 SDK。 所以我在安装位置 "CrossChex" application.
中找到了 DLL 文件现在我调用了 DLL 文件,
- ACE.DLL
- AvzScanner.DLL
- FaceSdk_V1.0.ocx
- FaceSdk_V2.0.ocx
- Facial.DLL
当我在 C# 应用程序中添加 .dll 文件作为引用时,它显示错误:
A reference to the "....dll" could not be added.Please make sure that the file is accessible and that it is a valid assembly or COM component.
当我添加 DLL 时,它出现以下错误信息。
因为DLL的编译版本。 您必须像这样导入本机编写的 dll:
[DllImport("tc400.dll")]
public static extern int methodName();
它将是 class 的方法,您可以在其中声明它。 但是您必须知道方法名称才能包含它并使用。 祝你好运