TileIconifier.Forms.Shared.FrmException.ShowExceptionHandler C# (CSharp) Méthode

ShowExceptionHandler() public static méthode

public static ShowExceptionHandler ( Exception ex ) : void
ex System.Exception
Résultat void
        public static void ShowExceptionHandler(Exception ex)
        {
            using (var unhandedException = new FrmException(ex))
            {
                unhandedException.StartPosition = FormStartPosition.CenterScreen;
                unhandedException.ShowDialog();
            }
        }