本文介绍了哪里是LibUsbDotNet.dll?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

第一个 LibUsbDotNet 2.2.8帮助例如要求项目引用LibUsbDotNet.dll。这个例子code是:

The first LibUsbDotNet 2.2.8 Help example requires project reference LibUsbDotNet.dll. The example code is:

using LibUsbDotNet;
using LibUsbDotNet.Info;
using LibUsbDotNet.Main;
namespace Examples
{
    internal class ShowInfo
    {
        public static UsbDevice MyUsbDevice;
        ...

试图找到LibUsbDotNet.dll使用谷歌或在这里计算器不清的最好的。使用LibUsbDotNet_Setup.2.2.8安装程序安装LibUsbDotNet帮助,但不是LibUsbDotNet.dll。

Trying to find LibUsbDotNet.dll using google or here at stackoverflow is unclear at best. Using the LibUsbDotNet_Setup.2.2.8 installer installs the LibUsbDotNet Help but not LibUsbDotNet.dll.

推荐答案

刚装LibUsbDotNet自己,发现该DLL应位于C:\ Program Files文件\ LibUsbDotNet假设你做了完全安装(默认选项)时,你安装了它。如果只选中的文件和不运行时,也不会被放在那里。

Just installed LibUsbDotNet myself and found that the DLL should be located in C:\Program Files\LibUsbDotNet assuming you did the "full installation" (default options) when you installed it. If you checked only the documentation and not the runtime, it will not have been placed there.

这篇关于哪里是LibUsbDotNet.dll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-14 10:43