Click here to Skip to main content
15,892,746 members
Articles / Programming Languages / C#
Tip/Trick

Refactoring Tips - Tip 6

Rate me:
Please Sign up or sign in to vote.
3.12/5 (7 votes)
1 Mar 2010CPOL 7.4K  
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


C#
public class A
 {
     
   private void Method()
   {
    //Some statements...
   }
   
 }


I hope this helps!.

Regards,
-Vinayak

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect MindTree Ltd
India India
Motivated achiever who guides organizations in applying technology to business settings, provides added value, and creates project deliverables in a timely manner. An experienced Technical Consultant, have successfully led large project teams of more than 20 people from requirements gathering to implementation and support using C#, .NET ,ADO.NET, ADO.NET Entity Framework,ASP.NET,ASP.NET MVC, WCF and SQL Server.

Comments and Discussions

 
-- There are no messages in this forum --