Reputation: 59
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.
Upvotes: 1
Views: 1215
Reputation: 29668
You can PInvoke it:
http://www.pinvoke.net/default.aspx/kernel32/DeviceIoControl.html
Upvotes: 1