vote up 5 vote down star

Is there a quick way to determine whether you are using certain namespaces in your application. I want to remove all the unneccessary using statements like using System.Reflection and so on, but I need a way to determine if I am using those libraries or not. I know that the tool Resharper does this for you, but is there a quick and dirty and Free way to do this?

flag

4 Answers

vote up 12 vote down check

Visual Studio 2008 will also do this for you, right click in your class file and select "Organize Usings" -> "Remove and Sort".

link|flag
vote up 2 vote down

VS2008 can do this on a per-file basis.

Right-click the source code, select "Organize Usings", "Remove Unused Usings".

link|flag
vote up 8 vote down

Visual Studio 2008 + PowerCommmands = Remove and Sort usings across a whole solution.

link|flag
Yes I miss PowerCommands, I learned the hard way that PowerCommands and the MVC CTP5 don't play nice always. – Quintin Robinson Jan 23 at 16:08
PowerCommands and WPF don't play nice together either. – Kyralessa Jan 23 at 17:10
vote up 1 vote down

I just noticed your vs2008 tag, but for those who don't have VS2008, you can get a similar feature in Resharper.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.