如何指定库的位置以使 "using" 语句起作用 (C#)
How do I designate the location of a library in order for a "using" statement to work (C#)
我用过一些 C#,但最近没有用过。
我从一些代码中得到了这个 header,它调用了自定义 non-system 库(Dynastream.Fit,在底部),但我需要知道如何告诉程序它所在的位置,以便它可以编译。很确定该库在我下载的 SDK 中,只需要找到它即可。这是ANT+的FitSDK。
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Diagnostics;
using Dynastream.Fit;
您需要将 Dynastream.Fit
的 dll 添加到您的项目 Reference
文件夹中,方法是右键单击引用文件夹 -> 添加引用 -> 浏览 -> 选择 dll;除非您已经在 GAC 中安装了程序集。
我用过一些 C#,但最近没有用过。
我从一些代码中得到了这个 header,它调用了自定义 non-system 库(Dynastream.Fit,在底部),但我需要知道如何告诉程序它所在的位置,以便它可以编译。很确定该库在我下载的 SDK 中,只需要找到它即可。这是ANT+的FitSDK。
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Diagnostics;
using Dynastream.Fit;
您需要将 Dynastream.Fit
的 dll 添加到您的项目 Reference
文件夹中,方法是右键单击引用文件夹 -> 添加引用 -> 浏览 -> 选择 dll;除非您已经在 GAC 中安装了程序集。