空DLL,类库C#

时间:2017-05-31 10:58:23

标签: c# class dll class-library

我已经创建了一个用于其他项目(不是.Net项目)的类库,我已经构建了生成dll文件的解决方案,但是当我尝试使用dllexp来尝试使用dllexp我的dll它是空的。

我的课程被宣布为公开,你可以看到如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PCLImportCLin.ServiceReference1;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Xml.Serialization;

namespace PCLImportCLin
{
    public class ImportCL
    {
        public int geTroupeau()
        {
        // Rest of the code
        }
    }
}

1 个答案:

答案 0 :(得分:0)

我想你要找的是:

(假设您使用的是Visual Studio)在项目中,右键单击“引用”,转到“浏览”,然后单击“浏览...”按钮。转到您的dll路径,选择它。你去吧现在您可以像using Your.Dll.Namespace;

一样使用它