基本信息
源码名称:c# 写的LIBUSB库应用例子,可以说功能很全了
源码大小:0.46M
文件格式:.zip
开发语言:C#
更新时间:2023-07-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
c# 写的LIBUSB库应用例子,可以说功能很全了 0分分享,我下载时要了我6分呢


文件清单
├── Benchmark
│   ├── Benchmark.csproj
│   ├── fBenchmark.cs
│   ├── fBenchmark.designer.cs
│   ├── fBenchmark.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── ReadMe.txt
├── bin
│   └── Release
├── build
│   └── ReleaseNotes.html
├── CSLibUsb
│   ├── DeviceNotify
│   │   ├── DeviceNotifier.cs
│   │   ├── DeviceNotifyEventArgs.cs
│   │   ├── Info
│   │   │   ├── PortNotifyInfo.cs
│   │   │   ├── UsbDeviceNotifyInfo.cs
│   │   │   └── VolumeNotifyInfo.cs
│   │   └── Internal
│   │       ├── Dev_Broadcast.cs
│   │       ├── DevNotifyNativeWindow.cs
│   │       └── SafeNotifyHandle.cs
│   ├── LibUsbDotNet.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── Usb
│       ├── Info
│       │   ├── InfoConfig.cs
│       │   ├── InfoDevice.cs
│       │   ├── InfoEndPoint.cs
│       │   ├── InfoInterface.cs
│       │   └── InfosBase.cs
│       ├── Internal
│       │   ├── API
│       │   │   ├── LibUsb_AltInterfaceDescriptor.cs
│       │   │   ├── LibUsbAPI.cs
│       │   │   ├── LibUsbBus.cs
│       │   │   ├── LibUsb_ConfigDescriptor.cs
│       │   │   ├── LibUsb_Context.cs
│       │   │   ├── LibUsb_DevHandle.cs
│       │   │   ├── LibUsbDevice.cs
│       │   │   ├── LibUsb_DeviceDescriptor.cs
│       │   │   ├── LibUsb_EndpointDescriptor.cs
│       │   │   └── LibUsb_InterfaceDescriptor.cs
│       │   ├── EndpointTypes.cs
│       │   ├── Helper.cs
│       │   ├── HexDisplayAttribute.cs
│       │   ├── LibUsbConst.cs
│       │   └── TransferContext.cs
│       ├── Main
│       │   ├── DataReceivedArgs.cs
│       │   ├── ErrorCodes.cs
│       │   ├── LibUsbException.cs
│       │   ├── ReadEndpoints.cs
│       │   ├── UsbDeviceList.cs
│       │   ├── UsbEndpointList.cs
│       │   ├── UsbError.cs
│       │   ├── UsbSymbolicName.cs
│       │   └── WriteEndpoints.cs
│       ├── UsbDevice.cs
│       ├── UsbEndpointBase.cs
│       ├── UsbEndpointReader.cs
│       ├── UsbEndpointWriter.cs
│       └── UsbGlobals.cs
├── Docs
│   ├── arrow.gif
│   ├── htmlContent.css
│   ├── htmlContent.js
│   ├── index.htm
│   ├── LibUsbDotNet.html
│   ├── LibUsbDotNet.jpg
│   ├── LibUsbDotNet.xml
│   ├── tree.dtd
│   ├── treeNode_Empty.gif
│   ├── treeNode_Minus.gif
│   ├── treeNode_Plus.gif
│   ├── xmlTree.css
│   ├── xmlTree.js
│   └── xmlTree.xsl
├── gpl-3.0.txt
├── lgpl-3.0.txt
├── LibUsbDotNet.sln
├── setup
│   └── additional
│       └── libusb-win32
│           ├── AUTHORS.txt
│           ├── COPYING_GPL.txt
│           ├── COPYING_LGPL.txt
│           ├── I64
│           │   ├── inf-wizard.exe
│           │   ├── libusb0.dll
│           │   ├── libusb0.sys
│           │   ├── libusb.lib
│           │   ├── msvci70.dll
│           │   ├── testlibusb.exe
│           │   └── testlibusb-win.exe
│           ├── inf-wizard.exe
│           ├── install-filter.exe
│           ├── x64
│           │   ├── inf-wizard.exe
│           │   ├── libusb0.dll
│           │   ├── libusb0.sys
│           │   ├── libusb.lib
│           │   ├── msvci70.dll
│           │   ├── testlibusb.exe
│           │   └── testlibusb-win.exe
│           └── x86
│               ├── inf-wizard.exe
│               ├── libusb0.dll
│               ├── libusb0.sys
│               ├── libusb.lib
│               ├── msvci70.dll
│               ├── testlibusb.exe
│               └── testlibusb-win.exe
├── Test_Bulk
│   ├── fTestBulk.cs
│   ├── fTestBulk.Designer.cs
│   ├── fTestBulk.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── ReadMe.txt
│   └── Test_Bulk.csproj
├── Test_DeviceNotify
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── ReadMe.txt
│   ├── Test_DeviceNotify
│   └── Test_DeviceNotify.csproj
├── Test_Info
│   ├── fTestInfo.cs
│   ├── fTestInfo.Designer.cs
│   ├── fTestInfo.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── ReadMe.txt
│   └── Test_Info.csproj
├── UnitTest
│   ├── fUsbTest.cs
│   ├── fUsbTest.Designer.cs
│   ├── fUsbTest.resx
│   ├── PicTestDevice.cs
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Test
│   │   ├── ITest.cs
│   │   ├── Test_BigReadWrite.cs
│   │   ├── Test_cancel_io.cs
│   │   └── Test_usb_strerror.cs
│   └── UnitTest.csproj
└── Utility
    ├── DevEnvBuilder.exe
    └── NetBuildInfo.exe

33 directories, 149 files