+ 1
How to add fingerprint taken by fingerprint scanner in c# code?
i want to store fingerprint image.iso that i have to add captured fingerprint in my code ..how to do that one
1 ответ
0
There's no standard way of doing this. The fingerprint scanner will have to have some sort of API in order to capture the input, typically through a static or dynamic library and some header files. It's unlikely that the API is in C# so you'll likely have to create a wrapper class (see delegates) or program it in the likely C/C++.