Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Refactoring Tips - Tip 7

2.33/5 (5 votes)
1 Mar 2010CPOL 1  
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......
Refactoring Tips - Tip 7

Tip 7

Remove unused Methods from code.This helps to achieve highly maintainable code

In the following snippet function Method1 is declared but not used.

Bad practice

C#
public class A
{

  private void Method1()
  {
   //Some statements...
  }

  public void Method2()
  {
  //Some statements
  }

}



Good practice

public class A
{
  public void Method2()
  {
  //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)