private static void RunInReleaseMode() { AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException; try { AudioVisualizerBootstrapper bootstrapper = new AudioVisualizerBootstrapper(); bootstrapper.Run(); } catch (Exception ex) { HandleException(ex); } }
private static void RunInDebugMode() { AudioVisualizerBootstrapper bootstrapper = new AudioVisualizerBootstrapper(); bootstrapper.Run(); }