65.9K
CodeProject is changing. Read more.
Home

Refactoring Tips - Tip 7

starIconstarIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIcon

2.33/5 (5 votes)

Mar 1, 2010

CPOL
viewsIcon

6412

Refactoring Tips - Tip 7Tip 7Remove unused Methods from code.This helps to achieve highly maintainable codeIn the following snippet function Method1 is declared but not used.Bad practice public class A { private void Method1() { //Some statements......