FSO.Client.Program.Application_ThreadException C# (CSharp) 메소드

Application_ThreadException() 개인적인 정적인 메소드

private static Application_ThreadException ( object sender, ThreadExceptionEventArgs e ) : void
sender object
e System.Threading.ThreadExceptionEventArgs
리턴 void
        private static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
        {
            LogThis.Log.LogThis("Exception: " + e.Exception.ToString(), LogThis.eloglevel.error);
            System.Windows.Forms.MessageBox.Show("Exception: \r\n" + e.Exception.ToString());
        }