Guest User

Untitled

a guest
Dec 16th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. private void Log(string s , Color? c = null)
  2. {
  3. TB_Log.SelectionStart = TB_Log.TextLength;
  4. TB_Log.SelectionLength = 0;
  5. TB_Log.SelectionColor = c ?? Color.Black;
  6. TB_Log.AppendText((TB_Log.Lines.Count() == 0 ? "" : Environment.NewLine) + DateTime.Now + "\t" + s);
  7. TB_Log.SelectionColor = Color.Black;
  8.  
  9. }
Add Comment
Please, Sign In to add comment