During code review I discovered many places of our C# code that looks like this:
if(IsValid()) { return true; } else { return false; }
return IsValid(); is the way to go. less code, more concise - choice of champions
return IsValid();