Refactoring Tips - Tip 6
Tip 6
Remove unused variable from the code
Bad practice
In the following code var1 is declared but not used
public class A
{
private int var1;
private void Method()
{
}
}
Good practice
public class A
{
private void Method()
{
}
}
I hope this helps!.
Regards,
-Vinayak