How to use ZK4500 Fingerprint Scanner SDK in C# Project [closed]
I am developing a project in C#, for which I want to login/authenticate a user using their fingerprint. I bought a ZK4500 Fingerprint scanner and got its SDK from http://www.zkteco.com/product/ZK4500_238.html . The SDK is in C++. So How can I integrate this SDK with my C# project to perform the desired functionality? You need to add reference to ZKFPEngXControl that will appear under COM Type Libraries. After that you can use the ZKFPEngX Class to do whatever you require. using ZKFPEngXControl; and then ZKFPEngX fp = new ZKFPEngX(); fp.SensorIndex = 0; fp.InitEngine(); // Do validation as well