Why doesn't this work:
In a larger context, I'm extract a line similar to string test, and then checking subsequent lines for it, but because it captures parenthesis, it doesn't match.
Code:
string test = @"multi(0)";
if (Regex.IsMatch(test, test))
MessageBox.Show("this doesn't print");
In a larger context, I'm extract a line similar to string test, and then checking subsequent lines for it, but because it captures parenthesis, it doesn't match.