I have the following line
(textMsg).Style.set_BackgroundColor(Color.FromArgb(0, 0, 0));
and what I want to get is
(textMsg).Style.BackgroundColor = Color.FromArgb(0, 0, 0);
i tried with the following regEx pattern but with no luck
set_(.*)\((([^()]*|(?R))*)\)
i would appreciate any suggestion.
Thanks