Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 581 Bytes

RCS1096.md

File metadata and controls

32 lines (22 loc) · 581 Bytes

RCS1096: Use bitwise operation instead of calling 'HasFlag'

Property Value
Id RCS1096
Category Performance
Severity Info

Example

Code with Diagnostic

if (options.HasFlag(RegexOptions.IgnoreCase)) // RCS1096
{
}

Code with Fix

if ((options & RegexOptions.IgnoreCase) != 0)
{
}

See Also

(Generated with DotMarkdown)