vote up
0
vote down

A Cool / Unexpected Refactoring around .Net C# Locking Issue

I’m constantly amazed by the insightfulness of ReSharper’s suggested refactorings (ReSharper is a Visual Studio Addin from JetBrains I use with C#). Today, I’ve been working on a threading problem... This site is a resource for asp.net web programming.
 
Peter Kellner
Jul 30 2010 08:27 AM
vote up
0
vote down

“Refactoring” Notes

I’m not going to bother with a review of Martin Fowler‘s Refactoring: Improving the Design of Existing Code. It’s good enough that its catalog, available in expanded form online, now provides the definitive vocabulary shared by dozens
 
Keith Dahlby
Jul 09 2010 11:05 PM
vote up
0
vote down

Another Nice DevExpress CodeRush Refactoring

For the last few days, I’ve been using DevExpress CodeRush and am finding some very useful refactorings.  Many I’m not blogging about, but there are a few that I really like.  In this post,... This site is a resource for asp.net web
Jul 06 2010 12:53 AM
vote up
0
vote down

A Handy Refactoring with CodeRush (InLine Temp)

I’ve recently started using CodeRush with Visual Studio 2010 and am so far very impressed with the convenience it adds to coding.  One thing that is very clear is that the creators of CodeRush... This site is a resource for asp.net web programming.
Jul 02 2010 08:56 PM
vote up
0
vote down

ReSharper 5.0 Adds New “Add Parameter” Refactoring

In this post, I’ll show a simple example of how when you add a parameter to C# method, ReSharper gives you a simple prompting to ask if you want to add a parameter to your method, or create an... This site is a resource for asp.net web programming. It
Apr 26 2010 09:08 PM
vote up
0
vote down

Using ReSharper, I've Always Wondered Why They Had the "Invert if" refactor

  Well, now I know.  Here is an example of some code I just wrote: if (doDeficitCalc) { throw new ApplicationException("Need to implement deficit weight... This site is a resource for asp.net web programming. It has examples by Peter
Oct 18 2009 09:03 PM
vote up
0
vote down

Refactoring with Iterators: Prime Factors

Andrew Woodward recently posted a comparison of his test-driven Prime Factors solution to one written by Uncle Bob. In the comments, someone suggested that Andrew use an iterator instead so I thought I’d give it a try. First, let’s repost the
 
Keith Dahlby
Sep 30 2009 08:46 PM