This is a C# library dedicated for using with a www.canusb.com device
Full notes: See ReadMe.txt
Summary
The LAWICEL DLL is 'unmanaged code' and was not designed for use by C#/VB/Mono
http://en.wikipedia.org/wiki/Managed_code
If you wish to call 'unmanaged code' from 'managed code', you need to use a 'C# wrapper' to access the DLL. This wrapper uses 'PInvoke' (like peek/poke) to 'martial' calls from managed to unmanaged code. It sounds complicated, and it is.
IT IS ALSO TOTALLY...