ReSharper 2022.3 Help

Code Inspection: Expression is always 'true' or always 'false'

This inspection is fairly obvious: ReSharper analyzes values and nullability, integer arithmetics, and so on, and suggests eliminating expressions that are always true or always false based on its analysis results.

The only problem with this inspection is that sometimes it's not obvious how ReSharper has come to this conclusion. Because of this, you may be unwilling to accept suggestions to replace expressions with explicit true or false, or to remove a redundant checks in if statements. Below are some StackOverflow questions that illustrate this problem:

Last modified: 21 December 2021