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

Refactoring Tips - Tip 2

3.03/5 (12 votes)
28 Feb 2010CPOL 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)