public void OnLog(cGatherEventArgs evt) { if (e_Log != null) { e_Log(evt); } }
public static void AppendText(RichTextBox richTextBox, cGatherEventArgs evt) { richTextBox.Invoke(new OnGatherLog(delegate(cGatherEventArgs e) { richTextBox.AppendText(e.MessageType + e.ThreadName + ":" + e.Message + "\r\n"); richTextBox.ScrollToCaret(); }), evt); }