65.9K
CodeProject is changing. Read more.
Home

Refactoring Tips - Tip 6

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.12/5 (7 votes)

Mar 1, 2010

CPOL
viewsIcon

7460

Refactoring Tips - Tip 6Tip 6 Remove unused variable from the codeBad practiceIn the following code var1 is declared but not used public class A { private int var1; private void Method() { //Some statements... } }Good...

Refactoring Tips - Tip 6 Tip 6 Remove unused variable from the code Bad practice In the following code var1 is declared but not used
 
 public class A
 {
   private int var1;
   
   private void Method()
   {
    //Some statements...
   }
   
 }

Good practice
public class A
 {
     
   private void Method()
   {
    //Some statements...
   }
   
 }
I hope this helps!. Regards, -Vinayak