How to do effective refactoring using VS Studio 2005/2008 - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T15:43:23Zhttp://stackoverflow.com/feeds/question/647873http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-20081How to do effective refactoring using VS Studio 2005/2008Kb2009-03-15T14:16:26Z2009-03-28T14:08:54Z
<p>I am looking for experience/tools to improve refactoring techniques using VS Studio 2005/2008.<br/>
Currently I only use standard refactor menu choices:<br/>
Rename...<br/>
Extract Method...<br/>
Encapsulate Field...<br/>
<img src="http://img208.imageshack.us/img208/5852/vsrefactor.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/647882#6478828Answer by Earwicker for How to do effective refactoring using VS Studio 2005/2008Earwicker2009-03-15T14:22:41Z2009-03-15T14:31:33Z<p><a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a>. 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.</p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/647883#6478831Answer by MartinHN for How to do effective refactoring using VS Studio 2005/2008MartinHN2009-03-15T14:22:49Z2009-03-15T14:22:49Z<p><a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> could be an option.</p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/647923#6479232Answer by Kent Boogaart for How to do effective refactoring using VS Studio 2005/2008Kent Boogaart2009-03-15T14:52:03Z2009-03-15T14:52:03Z<p>I much prefer <a href="http://msdn.microsoft.com/en-us/vcsharp/dd218053.aspx" rel="nofollow">CodeRush Xpress</a> to Resharper, since the latter brings my machine to a crawl. See the link for a list of features.</p>
<p>HTH,
Kent</p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/647938#6479381Answer by Brian Rasmussen for How to do effective refactoring using VS Studio 2005/2008Brian Rasmussen2009-03-15T14:58:56Z2009-03-15T14:58:56Z<p>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. </p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/647943#6479433Answer by Scott Weinstein for How to do effective refactoring using VS Studio 2005/2008Scott Weinstein2009-03-15T15:00:45Z2009-03-15T15:19:29Z<p>Use one of Resharper or CodeRush&RefactorPro (or the free CodeRush Xpress)</p>
<p>I personally think CodeRush/RefactorPro is the cats pajamas - but reasonable people have been know to prefer Resharper. </p>
<p>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.</p>
<p>Here's a <a href="http://devexpress.com/Products/Visual%5FStudio%5FAdd-in/Refactoring/info.xml" rel="nofollow">list of RefactorPro refactorings</a></p>
<p>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 <strong>designer</strong>. 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.</p>
<p>Worth every penny.</p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/650893#6508931Answer by Sarath for How to do effective refactoring using VS Studio 2005/2008Sarath2009-03-16T15:25:11Z2009-03-16T15:25:11Z<p><a href="http://devexpress.com" rel="nofollow">DevExpress</a> providing some free tools. Please check it.</p>
http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008/692811#6928111Answer by Dan for How to do effective refactoring using VS Studio 2005/2008Dan2009-03-28T14:08:54Z2009-03-28T14:08:54Z<p>For the "experience" part, you can check out this book:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/047043452X" rel="nofollow">Professional Refactoring in C# & ASP.NET</a></p>