示例#1
0
文件: CErr.cs 项目: Duke-Jones/ED-IBE
 static public void processError(Exception ex, string Infotext)
 {
     ErrorViewer errViewer = new ErrorViewer();
     errViewer.ShowDialog(ex, Infotext);
 }
示例#2
0
        static public void processError(Exception ex, string Infotext, Boolean ignoreAllowed)
        {
            ErrorViewer errViewer = new ErrorViewer();

            errViewer.ShowDialog(ex, Infotext, ignoreAllowed);
        }