【发布时间】:2010-07-27 11:22:20
【问题描述】:
public static UsbDeviceFinder MyUsbFinder = new UsbDeviceFinder(0x20DF, 0x0001);
// Find and open the usb device.
MyUsbDevice = UsbDevice.OpenUsbDevice(MyUsbFinder);
// If the device is open and ready
if (MyUsbDevice == null) throw new Exception("Device Not Found.");
查看下面的屏幕截图,了解我在哪里提取了 VendorID 和 ProductID
alt text http://img266.imageshack.us/img266/7197/screen1uv.png
那么为什么 USBFinder 一直返回 null?
【问题讨论】: