1
vote
2answers
171 views

Renaming variables in JavaScript

I've been stuck with the unpleasant task of "unminifying" a minified JavaScript code file. Using JSBeautifier, the resulting file is about 6000 lines long. Ordinarily, the variable and parameter ...
1
vote
2answers
62 views

Tool to refactor all properties to have a backing field? [closed]

I have a very large project at hand - lots of classes and lots of properties (think thousands). When serializing auto properties for sending data over WCF there is an exception that's handled ...
0
votes
3answers
172 views

Can I refactor class constructor to use a a new class, using Visual Studio?

I have the following class, that has too many parameters in the constructor, and I want to refactor the class to receive only one object that encapsulate all the parameters. public class MyClass { ...
0
votes
1answer
159 views

Visual Studio: Automated reference cleaning?

Is there any way of finding out what assemblies that's not used in a solution and have them removed automatically? (Just like when removing unneeded using-statements.) Side note: Wouldnt it be nice ...
8
votes
3answers
1k views

Automatic regenerate designer files

Recently I've been making some improvements to a lot of the controls we use, for example give properties default values and making buttons private instead of protected. By making this kind of ...
1
vote
2answers
223 views

Auto refactoring to string.Format

I have a c# project in VS2008 that have a lot of lines of code that look like this: string s = "bla blab" + x + "bla bla bla" + y + .... ; and I would like to covert those strings to a single ...
16
votes
2answers
5k views

Refactor Pro versus Visual Assist X for C++ Development

There are two major refactoring tools which can be installed for Visual Studio that provide C++ support. The full versions of both tools are $250, and they seem to offer similar functionality. They ...
1
vote
1answer
624 views

Visual Assist X: curly braces are moving during refactoring

I use Visual Assist X, build from 05.01.2009, but the same problem occurred in the previous releases as well. (I run it on MSVS 2005) When I do some refactoring (like extracting a method), ...
2
votes
2answers
601 views

Is there a way to find all unused code in a .NET project using ReSharper?

I've just done a major, major overhaul on a colleagues project and throughout the process almost everything got rewritten. There was far too much code beforehand. Now, I am left with the prospect ...