コード例 #1
0
 /// <summary> Display an error message box with access to the stack trace for 
 /// any caught exception  </summary>
 /// <param name="Message"> Message to display </param>
 /// <param name="Title"> Title for error message box which pops up </param>
 /// <param name="ee"> Exception to include access to the stack trace and information </param>
 /// <returns> Dialog result from the box </returns>
 public static DialogResult Show( string Message, string Title, Exception ee )
 {
     ErrorMessageBox_Internal showError = new ErrorMessageBox_Internal(Message, Title, ee);
     return showError.ShowDialog();
 }
コード例 #2
0
        public static DialogResult Show(string Message, string Title, Exception ee)
        {
            ErrorMessageBox_Internal showError = new ErrorMessageBox_Internal(Message, Title, ee);

            return(showError.ShowDialog());
        }