Fork me on GitHub
TypeName SimplifyRedundantBooleanComparisonsAnalyzer
Check Id CC0049
Category Usage
Severity Info

Cause

Remove redundant boolean comparison.

Example

var result = (value > 0) == true;

Code fix

A code fix will be presented to you that will transform the code:

var result = (value > 0);

Code fix

Related rules

TBD

See also

TBD