リンクが機能していない場合、機能していないリンクのテキストの色を変更したいのですが、その色は赤でなければなりません。私のリンクはテキストボックスにあります
if (!IsLinkWorking(link))
{
//Here you can show the error. You don't specify how you want to show
TextBox2.Text += string.Format(
"{0}\nNot working\n\n ", link);
// this should be in red which is in textbox2.text
}
else
{
TextBox2.Text += string.Format("{0}\n working\n\n", link);
}