up vote 0 down vote favorite
share [g+] share [fb]

There is this option available in Visual Studio 2008.

Is there a similar option in Visual Studio 2005? Or something else that would accomplish such a task? An add-in, maybe?

link|improve this question

Why don't you just switch to 2008 instead of hunting for plugins? – Mehrdad Afshari Jan 22 '09 at 9:56
Because that would not be the best use of my team's time and resources. – Marek Grzenkowicz Jan 22 '09 at 10:15
feedback

4 Answers

up vote 1 down vote accepted

Resharper has a sort function. But it looks like all System usings are put on top, and then the rest alphabetically.

Also check this question also on optimizing usings with Resharper.

link|improve this answer
feedback

If you've got Visual Assist, that's got a 'Sort Selected Lines' command that will do what you need.

link|improve this answer
feedback

If you're cleaning up the files with unsorted using statements once (as opposed to having to deal with them on an on-going basis, perhaps because of a sloppy/uncooperative coworker?), and you are willing to use another tool for the job, there is another option.

I like using VS 2005 for its intellisense, but sometimes find the editor lacking in power compared to Emacs. I have Epsilon (an Emacs clone) which has the command sort-region, which takes the lines in the current selection and sorts them alphabetically. I can even type in a keyboard macro in Epsilon that:

  • Finds the first using statement in a file and starts the selection there.
  • Finds the last using statement in the file.
  • Sorts the lines between the first and last using statement.
  • Saves the file.
link|improve this answer
feedback

Resharper can remove the unused 'using' statements. I'm not 100% sure it can also sort them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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