| TypeName | SimplifyRedundantBooleanComparisonsAnalyzer |
| Check Id | CC0049 |
| Category | Usage |
| Severity | Info |
Remove redundant boolean comparison.
var result = (value > 0) == true;A code fix will be presented to you that will transform the code:
var result = (value > 0);
TBD
TBD