Replies: 2 comments 2 replies
-
Hi, this analyzer is already part of Roslynator: https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS1049.md |
Beta Was this translation helpful? Give feedback.
1 reply
-
Unfortunately yes, almost all Roslynator analyzers are for C# only. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Visual Studio has a built-in CodeFix for "Redundant Equality" already but only if the comparison is done against
True
I would really love to have a CodeFix to convert
... = False
toNot ...
.While I know comparing against
False
is not wrong technically, I think it's pretty old fashioned to use.C#
VB.NET
Beta Was this translation helpful? Give feedback.
All reactions