How to do effective refactoring using VS Studio 2005/2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T15:43:23Z http://stackoverflow.com/feeds/question/647873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/647873/how-to-do-effective-refactoring-using-vs-studio-2005-2008 1 How to do effective refactoring using VS Studio 2005/2008 Kb 2009-03-15T14:16:26Z 2009-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#647882 8 Answer by Earwicker for How to do effective refactoring using VS Studio 2005/2008 Earwicker 2009-03-15T14:22:41Z 2009-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#647883 1 Answer by MartinHN for How to do effective refactoring using VS Studio 2005/2008 MartinHN 2009-03-15T14:22:49Z 2009-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#647923 2 Answer by Kent Boogaart for How to do effective refactoring using VS Studio 2005/2008 Kent Boogaart 2009-03-15T14:52:03Z 2009-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#647938 1 Answer by Brian Rasmussen for How to do effective refactoring using VS Studio 2005/2008 Brian Rasmussen 2009-03-15T14:58:56Z 2009-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#647943 3 Answer by Scott Weinstein for How to do effective refactoring using VS Studio 2005/2008 Scott Weinstein 2009-03-15T15:00:45Z 2009-03-15T15:19:29Z <p>Use one of Resharper or CodeRush&amp;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#650893 1 Answer by Sarath for How to do effective refactoring using VS Studio 2005/2008 Sarath 2009-03-16T15:25:11Z 2009-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#692811 1 Answer by Dan for How to do effective refactoring using VS Studio 2005/2008 Dan 2009-03-28T14:08:54Z 2009-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# &amp; ASP.NET</a></p>