65.9K
CodeProject is changing. Read more.
Home

Refactoring Tips - Tip 11

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.33/5 (8 votes)

Mar 11, 2010

CPOL
viewsIcon

12409

Refactoring Tips - Tip 11Tip 11Refactoring 'OR' type of conditions - In a method,if we have multiple conditional statements,with the same result. apply this rule.Bad practiceprivate int Method(){ int result = 1; if( condition1) result = 0; if( condition2) ...