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(不,我不是從過去的),我甚至不能啓動從一個控制檯應用程序的服務。你知道如何解決它嗎? (如果您需要任何更多的信息,請自討苦吃)

謝謝你這麼多傢伙☺

回答