Exemple #1
0
 private void AppendIErrorInterface(IError e)
 {
     #region Add the IError Information to the String Builder
     string thedebuginformation = e.GetDebugInformation();
     Sb.Append("<tr>");
     Sb.Append("<td valign='top'>&nbsp;</td>");
     Sb.Append("<td>" + thedebuginformation + "</td>");
     Sb.Append("</tr>");
     #endregion
 }