Tagged Questions

7
votes
3answers
442 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 ...
3
votes
5answers
76 views

How to create an interface out of a class easily?

I have a class which has 10 methods. What i want is to create an interface of that class, i.e the interface will contain only the signature of those 10 methods. Can it be done easily in .NET using ...
2
votes
1answer
103 views

Need tools which will refactor the C# code for null checks

Can anyone suggest me for automating the null check refactoring in C# code? The actual problem is, I have a C# console application with 500 files where in each file contains so main IF-ELSE ...
2
votes
2answers
519 views

Tools for refactoring C# public fields into properties

I have a lot of C# code that uses public fields, and I would like to convert them to properties. I have Resharper, and it will do them one by one, but this will take forever. Does anyone know of an ...
1
vote
2answers
143 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 ...
0
votes
2answers
55 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 ...