65.9K
CodeProject is changing. Read more.
Home

Refactoring Tips - Tip 2

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.03/5 (12 votes)

Mar 1, 2010

CPOL
viewsIcon

8410

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