2012-06-01 64 views
1

我是C#中的新手,我想在Windows服務中捕獲無用的異常。乳清我試試這個窗口服務崩潰我不是什麼問題... 任何幫助將不勝感激。實現未處理的異常在窗口服務C#中捕獲事件?

+2

如何向我們展示一些代碼,我們提供有關你的信息,至少是最點點」重新做? –

+0

檢查windows的eventviewere這可以幫助你爲什麼窗口服務崩潰。並通過一些代碼snippts在這裏這將幫助你得到答案的問題 – JSJ

+0

如果我從來沒有得到任何答案我怎麼能批准答案.. –

回答

3

試試這個

在構造函數中添加此

AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); 

後構造

void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) 
    { 
     Exception ex =(Exception)e.ExceptionObject; 

     .... 
    } 
+0

謝謝這是工作... –

相關問題