FRAGE zu Exception Handling

Die Preisfrage! Siehe weiter unten... Bitte Mail an mich oder als Kommentar!

[STAThread]
static void Main(string[] args)
{
  try
  {
    Application.ThreadException += new    
        ThreadExceptionEventHandler(Application_ThreadException);

    Application.Run(new Form1());
  }
  catch (Exception ex)
  {
    HandleException(ex);
  }
  catch
  {
    // Kann dieser Code jemals aufgerufen werden???
    HandleException(new Exception("Catch not .net Exception"));
  }
}

No comments:

Post a Comment

Latest Posts

Popular Posts