Tip #37: Did you know…How to organize usings?

Posted: Dec 28, 2008  1 comments  

Average Rating

Tags
Deepak Verma
Editor
tips and tricks
Visual Studio
Visual Studio 2008
VS2008

Overtime C# source code files may have unnecessary & unorganized using directives. Visual Studio IDE organize using options can help you to unclutter the source code.

To organize the C# code right click anywhere inside the code editor, select Organize usings.

  • Select Remove Unused Usings to remove any using directives that are not used in the source code (this may remove some required using directives if the source code doesn't build)
  • Select Sort Usings to organize alphabetically the using directives (by default directives that begin with System comes before other using directives)
  • Select remove and Sort to perform both of the above operations

image

 

Thanks,
Deepak Verma
SDET | Visual Web Developer

View the original post

Submit a Comment

  • Plain text is accepted.
  • URLs starting with http:// are converted to links.