JetBrains Rider
 
2021.3
Get JetBrains Rider
You are viewing the documentation for an earlier version of JetBrains Rider.

Code Inspection: Convert 'if' to '||'

Last modified: 07 April 2022

An If statement can be rewritten using the conditional OR operator, provided that it’s a bool value that you modify depending on the result of the If statement.

Below, the Contains method returns bool, so you can assign the result of the method directly to a bool variable a. JetBrains Rider provides a quick-fix on If, which replaces If with the conditional OR operator to simplify the code: