尽管它很简单,但我无法让它工作。目标是在 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;
}
}