tags:

views:

109

answers:

1

I do not want to read serial port nor other possible easy shortcuts please. I would like to know how to read a USB port in my laptop using C#. whether you can suggest a site or explain the flow of the process i will greatly appreciate your help

+2  A: 

If you want to do development for USB, Jan Axelson's (the author of USB Complete) website is usually a good place to start.

Edit: Assuming it's a HID you want to communicate with this article could be useful and includes C# samples.

ho1