不同的類的功能我有兩個不同的命名空間不能訪問在不同的命名空間
命名空間1
namespace Project.Constants
{
public class EducationalInstitutes
{
public string test() {
return "Value";
}
}
}
命名空間2
using Project.Constants; //namespace 1
namespace Project.DAL
{
public class EducationalInstitute
{
EducationalInstitutes obj = new EducationalInstitutes();
obj.
}
}
的問題是我在類EducationalInstitutes
中定義的函數不是av ailable在我創建對象的地方