namespace PROJ.Service {
public static class ExceptionDatesUpdateService {
public static ExceptionDatesUpdateService()
{
}
public static bool IsServiceRunning() {
return _updateThread != null && _updateThread.IsAlive;
}
}
}
当我尝试使用上面的静态类时,它说它不可访问。为什么?参考存在。
using PROJ.Service;
namespace PROJ.admin {
public void ProcessRequest(HttpContext context) {
bool ch = ExceptionDatesUpdateService.IsServiceRunning();
}
}
感谢大家。问题被发现了。当我解决其他错误并编译它时。它消失了。我是 C# 新手,很抱歉这个愚蠢的问题。:)