単純なように、私はそれを機能させることができません。目標は、csharp コードで文字列を赤く強調することです。
private void HighlightStrings()
{
Regex regex = new Regex(@"^""*""$", RegexOptions.CultureInvariant);
MatchCollection MC = regex.Matches(this.Text);
foreach (Match match in MC)
{
this.Select(match.Index, match.Length);
this.SelectionColor = Color.Red;
}
}