Exemplo n.º 1
0
        public static void ShowFrom(Exception e)
        {
            MsgForm msg = new MsgForm(e.GetMessage());

            msg.ShowDialog();
        }
Exemplo n.º 2
0
        public static void ShowFrom(string text)
        {
            MsgForm msg = new MsgForm(text);

            msg.ShowDialog();
        }