public void WriteString(string text, params object[] args) { if (args != null && args.Length > 0) { sci.AppendText(String.Format(text, args), true); } else { sci.AppendText(text, true); } OnContentChanged(new ViewEventArgs(true, null)); }
private void AppendText(string text) { if (String.IsNullOrEmpty(text)) { return; } sci.AppendText(text, true); }