Ejemplo n.º 1
0
 public static void Show(Exception ex)
 {
     FE f = new FE("Warning", ex.Message, ex.StackTrace);
     f.ShowDialog();
 }
Ejemplo n.º 2
0
 public static void Show(string message, string title, string details)
 {
     FE f = new FE(title, message, details);
     f.ShowDialog();
 }