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();
return temp;
}
Good practice
private string GetData()
{
return (expression + (var1 * var2).ToString());
}
I hope this helps!.
Regards,
-Vinayak