Exemplo n.º 1
0
 /// <summary>
 /// static Unhandled Exception checker.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private static void UnhandledExceptionChecker(object sender, UnhandledExceptionEventArgs e)
 {
     // check if exception object is Exception or not
     if (e.ExceptionObject is Exception ex)
     {
         // pass the exception object as ex to the sound player
         // class to check if the source of the exception
         // is from woto audio player or not.
         if (SoundPlayer.IsOurFault(ex))
         {
             // exit the enviroment immediately
             Environment.Exit(1);
         }
     }
 }