我的解决方案包含几个项目,包括Commons
和TerminatorConsole2
. 现在我想从文件中引用Commons.Constants
类:TerminatorConsole2.Utils.Constants
namespace TerminatorConsole2.Utils
{
class Constants
{
public const string MANAGEMENT_CONSOLE_ADDRESS =
Commons.Constants.USE_EXTRA_WCF_INSTANCE ?
"net.pipe://localhost/xxx" :
"net.pipe://localhost";
但是我在“Commons”上收到“无法解析符号”。添加“使用 Commons”没有帮助,我收到同样的错误。
为什么一个项目不能使用同一解决方案的另一个项目中的类?
UPD添加Constants
类。但是我已经在另一个项目中使用了它,所以我认为这个类是可以的:
namespace Commons
{
public class Constants
{
public const int MAX_INSTRUMENTS_NUMBER_IN_SYSTEM = 200;
public const bool USE_EXTRA_WCF_INSTANCE = true;
}
}