1
특정 줄의 글꼴을 변경하고 싶습니다. 내 코드는 여기에 ...RichTextBox -> 특정 줄의 글꼴 변경
string[] textBoxLines = richTextBox1.Lines;
foreach (string line in textBoxLines)
{
if(line.StartsWith("-->"))
{
//here is my problem, how to can change the font in the spectific line...
}
}