public override void Close() { if (this.writer != null) { this.writer.Close(); } this.writer = null; this.stop = true; }
public RichTextBoxTraceListener(RichTextBox rtb) : base(string.Empty) { writer = new TraceWriter(rtb); }