False positive IDE0004 and false negative CS0121 reported by the analyzer when calling certain kind of method overloads #72933
Labels
Area-IDE
help wanted
The issue is "up for grabs" - add a comment if you are interested in working on it
Version Used: 4.10.0-2.24124.2 (3059a07)
Steps to Reproduce:
Diagnostic Id: False positive
IDE0004
, false negativeCS0121
if(char[])
conversion is removed.Expected Behavior: Analyzer doesn't produce
IDE0004
when the code is written as shown above and detectsCS0121
when(char[])
conversion is removed.Actual Behavior: False positive
IDE0004
reported by analyzer suggesting(char[])
conversion is redundant. Remove(char[])
conversion and noCS0121
is reported by analyzer, but compiling it results in aCS0121
failure.The text was updated successfully, but these errors were encountered: