tags:

views:

284

answers:

1

DeviceIoControl is used in C++ to communicate with USB device connected to the System. I want to use the same functionality in C#.net, but I can't able find anything similar.

+1  A: 

You can PInvoke it:

http://www.pinvoke.net/default.aspx/kernel32/DeviceIoControl.html

Lloyd