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

Refactoring Tips - Tip 2

Rate me:
Please Sign up or sign in to vote.
3.03/5 (12 votes)
28 Feb 2010CPOL 8.2K   1   1
Refactoring Tips - Tip 2Tip 2Avoid temporary variable declaration, if the variable is just a place holder as shown below.Bad practiceprivate string GetData(){ string temp; temp = expression + ( var1 * var2).ToString();//Some expression which calculate the desired...
Refactoring Tips - Tip 2

Tip 2

Avoid temporary variable declaration, if the variable is just a place holder as shown below.

Bad practice

private string GetData()
{
  string temp;
  temp = expression + ( var1 * var2).ToString();//Some expression which  calculate the desired value
  return temp;
}


Good practice

private string GetData()
{
 return (expression + (var1 * var2).ToString());
}


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

 
QuestionGood... Pin
joginder-banger26-Dec-14 6:57
professionaljoginder-banger26-Dec-14 6:57 

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.