What Reharper tells you that if you do
Console.WriteLine(result);
you can also do
Console.WriteLine(true);
That is, wherever you use the result in if, you can also use true, because if result were false, you would not have reached the if body.
source share