Property | Value |
---|---|
Id | RCS1186 |
Category | Usage |
Severity | Hidden |
private void Bar()
{
bool isMatch = Regex.IsMatch("abc", @"\w"); // RCS1186
}
private readonly Regex _regex = new Regex(@"\w");
private void Bar()
{
bool isMatch = _regex.IsMatch("abc");
}
(Generated with DotMarkdown)