USB HID C#

Hello,
I need to connect to a HID USB device, using windows CE7 and C#;
Any ideas or samples? windows ce does not have the hid.dll, so I appreciate any ideias on how to make this connection.

Dear @rlopesgoes

As far as I know there’s no option to access a generic USB HID device from C#. What you need to do is writing the low-level code in C and provide an interface to C#.

This is usually done by creating a .dll containing the low-level code, and using Platform Invoke (P/Invoke) in C# to access this dll’s functions.

Regards
Andy