public void AppendLine(string text)
 {
     messageViewCategory.AppendLine(text);
 }
Exemple #2
0
 public void ReportMessage(string message)
 {
     messageView.AppendLine(message);
 }
Exemple #3
0
 public static void AppendOutputLine(string text)
 {
     EnsureProfileCategory();
     profileCategory.AppendLine(StringParser.Parse(text));
 }
Exemple #4
0
 public void LogLine(string line)
 {
     EnsureLoaded();
     view.AppendLine(line);
 }