0

我有一个窗口服务accesing其他项目(无论是什么,因为它甚至没有启动)System.ExecutionEngineException随着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(不,我不是从过去的),我甚至不能启动从一个控制台应用程序的服务。你知道如何解决它吗? (如果您需要任何更多的信息,请自讨苦吃)

谢谢你这么多家伙☺

回答