我有一个 Windows 服务正在访问其他项目(无论如何,因为它甚至没有启动)
问题是我有一段System.ExecutionEngineException
时间启动服务(在这段代码中)
protected override void OnStart(string[] args)
{
const IConfig config = null;
_weatherService = new WeatherService();
_weatherService.setup(config);
_weatherService.init();
_weatherService.start();
}
我使用的是 Windows XP 和 .NET 3.5(不,我不是过去的人),我什至无法从控制台应用程序启动服务。你知道怎么解决吗?(如果您需要更多信息,请询问)
非常感谢你们☺</p>