SSW Foursquare

Do you import namespaces and shorten the references?

Last updated by Tiago Araújo [SSW] almost 2 years ago.See history

You should import namespaces and shorten the references.

System.Text.StringBuilder myStringBuilder = new System.Text.StringBuilder();

Figure: Bad code - Long reference to object name

using System.Text;
...
...
StringBuilder myStringBuilder = new StringBuilder();

Figure: Good code - Import the namespace and remove the repeated System.Text reference

If you have ReSharper installed, you can let ReSharper take care of this for you:

Figure: Right click and select "Reformat Code..."

Figure: Make sure "Shorten references" is checked and click "Reformat"

We open source. Powered by GitHub