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

Refactoring Tips - Tip 9

Rate me:
Please Sign up or sign in to vote.
2.33/5 (5 votes)
2 Mar 2010CPOL 7.1K   1
Refactoring Tips - Tip 9Tip 9If your static method is operating on any entity/type/class,try to move the method to the entity.For eg:Bad practicepublic class Utility{ public static void Method1(Customer cust) { //Some processing on the Entity customer... }...
Refactoring Tips - Tip 9

Tip 9

If your static method is operating on any entity/type/class,try to move the method to the entity.

For eg:

Bad practice

public class Utility
{
 public static void Method1(Customer cust)
 {
   //Some processing on the Entity customer...
 }
 public static void Method2(some param)
 {
  //Some statements
 }
}


Good practice

C#
public class Utility
{
 public static void Method2(some param)
 {
  //Statements...
 }
}

public class Customer
{
 public void Method1()
 {
  //Do the processing...
 }
}


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

 
GeneralWell, sometimes... Pin
supercat92-Mar-10 6:55
supercat92-Mar-10 6:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.