我创建了一个类库作为BLL.Inside一个类作为ClsEmployeeMaster。 我想在我的访客管理项目中使用这个库。 当我试图将其添加为reff时。然后它成功添加但是当我开始构建时,错误发生在:
错误5类型或命名空间名称'ClsEmployeeMaster'不能 发现(您是否缺少使用指令或汇编参考?)
那该怎么办?
答案 0 :(得分:0)
仅为BLL添加引用是不够的。如果要使用BLL中定义的类,则需要使用完整命名空间命名它们。像
这样的东西MyCompany.MyBLL.ClsEmployeeMaster em = new MyCompany.MyBLL.ClsEmployeeMaster();
或者您可以使用
简化您的输入using MyCompany.MyBLL;
....
ClsEmployeeMaster em = new ClsEmployeeMaster();
答案 1 :(得分:0)
打开您创建的类文件。 检查在类上面写的命名空间。 例如
namespace MyCompany
{
class BLL
{
...
...
}
}
然后将该命名空间添加到当前的.cs
using dllName.MyCompany;