Code Inspection: Simplify negative equality expressionLast modified: 21 March 2024tipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.Negating an equality expression is, effectively, the same as ‘flipping’ the equality operator from == to != or the other way around. That way, if you write !(a == b), JetBrains Rider will offer the option to change it to a != b.