vote up 2 vote down star

What are your .NET code-refactoring best practices?

flag

57% accept rate
3  
Can you elaborate your intent behind the q? As it stands: My best practice would be to "Do it." – Gishu Jul 30 at 11:42
Yes, and make sure that what you end up with is better than what you started with ;0) – Sosh Jul 30 at 11:46
I really need to know what is best practices while doing code refactoring? – Ahmed Jul 30 at 11:46
2  
What do you actually want to know? Common smells? Anti-patterns? Refactoring tools? Your question is very vague. – Sam Wessel Jul 30 at 11:51
What are points to be focused while doing code refactoring? – Ahmed Jul 30 at 11:56
show 1 more comment

10 Answers

vote up 12 vote down

Refactoring Best Practice Rule No.1: Write some tests first!

Refactoring should make code easier to maintain, and ideally reduce coupling between components/classes.

Good candidates for refactoring are classes with high-coupling to other classes, and classes that do too much (breaking the Single Responsibility Principle)

Tools like ReSharper or Visual Studio's built-in tools are useful aids.

If you are using VB.NET then check out: Refactor! for Visual Basic 2008

link|flag
vote up 0 vote down
  • Your code should be more readable/understandable not less when you are done.
  • Generally your methods should become shorter, not longer.
  • Repetitive code should be moved into it's own method and reused.
link|flag
vote up 1 vote down

Don't mix refactoring with adding or changing functionality of the application.

link|flag
vote up 0 vote down

Refactor with a suite of tests to ensure you aren't breaking anything.

link|flag
vote up 2 vote down

As vague as the quesion is, it is hard to give any good answer. But I suggest you read Martin Fowler's catalog of refactorings, it gives you an excellent starting point:

Refactorings

link|flag
vote up 3 vote down

Usually writing tests is not the first thing you do, with legacy code most likely you'll not be able to write tests (dependencies on db, external libraries, statics, and so on)

Lean on the tools first, use automatic refactorings like 'Extract method' (Resharper and VS are your friends)

Working Effectively with Legacy Code by Michael Feathers is a very good book to learn how to break those dependencies.

For numeric algorithms and parsers PEX is a very useful tool to easily create characterization unit tests.

link|flag
Aha. First thing i do - increase readability with small changes which doesn't change any functionality. – Arnis L. Jul 30 at 13:00
@Arnis L.: The problem is always, "How can I be sure my trivial chnages didn't chnage/break anything?". I know from experience(!) that even the smallest changes can sometimes have unintended consequences. – Mitch Wheat Oct 9 at 10:51
vote up 0 vote down

Save your source code in a sourcecontrol system .. and when the refactoring fails just reset the current branch. That way you can never do any harm ... except waste some time occasionally. It's pretty cool since you can just hack & slash away at your code without worrying it'll never work again.

Also, when it's easy to do it on a new branch, do so. You never know when a bug creeps up halfway your refactoring process and you have to roll out a patch quickly (based on the previous, stable version).

link|flag
vote up 0 vote down

One suggestion, keep note of specific ways you want or need to refactor and stick them in a wiki or document someplace, because later down the road you might not have the luxury of time to spend rethinking what you were going to do to improve or otherwise overhaul the code.

link|flag
vote up 0 vote down

Remove all code repetition.

link|flag
vote up 3 vote down

I recommend actually reading the book. "Refactoring: Improving the Design of Existing Code", by Martin Fowler.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.