vote up 1 vote down star

I am looking for experience/tools to improve refactoring techniques using VS Studio 2005/2008.
Currently I only use standard refactor menu choices:
Rename...
Extract Method...
Encapsulate Field...
alt text

flag

7 Answers

vote up 8 vote down check

Resharper. The first few weeks after I installed it, I found something new and useful every day. The best ones are sometimes incredibly simple but they automate an activity that is usually so tedious that I go insane having to work on a machine with no Resharper installed. For example, "move this class out into a separate file named after it" means I mostly just type code, and never have to add files to the project by hand.

link|flag
@Earwicker: Could you elaborate on which Resharper functions that help you refactoring efficiently? – Kb Mar 15 at 14:24
@Earwicker: I see! Will get resharper now. ;)) – Kb Mar 15 at 14:32
Resharper is really cool. But it somehow makes you lazy ;) – Hamid Mar 15 at 14:39
@Hamid: Which refactoring goodies do you use in Resharper? – Kb Mar 15 at 14:42
vote up 1 vote down

For the "experience" part, you can check out this book:

Professional Refactoring in C# & ASP.NET

link|flag
Thanks +1, will get the book. – Kb Mar 28 at 15:31
vote up 1 vote down

DevExpress providing some free tools. Please check it.

link|flag
vote up 3 vote down

Use one of Resharper or CodeRush&RefactorPro (or the free CodeRush Xpress)

I personally think CodeRush/RefactorPro is the cats pajamas - but reasonable people have been know to prefer Resharper.

Both tools offer a wealth of code templates, refactoring tools, and analysis allowing you to think more about the intent and logic of the code and less about the mechanics of typing the code.

Here's a list of RefactorPro refactorings

A key differentiator for CodeRush/RefactorPro is the quality of the UI. Whereas Resharper looks like the UI was developed by programmers, CodeRush/RefactorPro looks like it was designed by a designer. Addititonally CodeRush helps on the inital writting of code everything from basic declarations (classes, functions, vars, etc) to complex statments. For instance, just watch the 'sw ' template go to town on an enumerated type.

Worth every penny.

link|flag
@Scott Weinstein: Thanks +1 – Kb Mar 15 at 16:06
Big fan of CodeRush&Refactor Pro, but I've seen Resharper and can see why some would prefer it. Nice reasoned answer +1. – Steve Brouillard Mar 16 at 15:28
vote up 1 vote down

I use Resharper as well and is really happy with it, but if all you have is VS it is still a lot better than nothing. The good thing about the (limited) refactoring options in VS is that they are pretty lightweight compared to Resharper and they do support some very useful features.

link|flag
vote up 2 vote down

I much prefer CodeRush Xpress to Resharper, since the latter brings my machine to a crawl. See the link for a list of features.

HTH, Kent

link|flag
@Kent Boogaart: +1 Thanks – Kb Mar 15 at 14:56
vote up 1 vote down

ReSharper could be an option.

link|flag
@MartinHN: Could you elaborate on which Resharper functions that help you refactoring efficiently? – Kb Mar 15 at 14:25
No. I don't use it myself. – MartinHN Mar 15 at 15:21

Your Answer

Get an OpenID
or

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