Assuming WinForms, the ForeColor property allows to change all the text in the TextBox (not just what you’re about to add):
TextBox.ForeColor = Color.Red;
To only change the color of certain words, look at RichTextBox.
Assuming WinForms, the ForeColor property allows to change all the text in the TextBox (not just what you’re about to add):
TextBox.ForeColor = Color.Red;
To only change the color of certain words, look at RichTextBox.