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

8535

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...