vote up 1 vote down star

I had to figure out a way to ask this that wasn't subjective, so this is specifically for Microsoft's coding style. In the ASP.NET MVC source, code files look like this:

// Copyright info

namespace System.Web.Mvc {
    using System;

    // blah blah
    // ...
}

Note that 'using System' lines up nicely with the namespace. If I was to apply this style to my company's code, should I put 'using' statements for my company's namespaces directly below as well (so that it lines up)? When I put 'using' declarations at the top, I usually start with .NET namespaces first, so that's why I'm unsure. For example, should I do this:

namespace MyCompany.MyProduct.Something {
    using System;
    using MyCompany.MyProduct.SomethingElse;
}

or this:

namespace MyCompany.MyProduct.Something {
    using MyCompany.MyProduct.SomethingElse;
    using System; 
}

I'm tempted toward the latter.

flag

77% accept rate
3  
Is this really a big decision? I mean...really? – rball Jun 24 at 17:03
It is if your team is going to be singing off of the same coding standard hymn sheet. – Kev Jun 24 at 17:06
How so? If you want your team to follow the same coding standard, then it is a decision, but is it a big one? Why not just pick one or the other and say 'this is how we're going to do it'? – jalf Jun 24 at 17:16
The "hymn sheet" analogy seems quite apposite. Your team may as well be singing camp fire songs to each other for all the good this is going to do them! – Earwicker Jun 24 at 17:21

4 Answers

vote up 7 vote down check

There is no single Microsoft style, although there have been attempts to consolidate their standardizations.

That being said, StyleCop forces all System namespaces to be listed first...

link|flag
Thanks for the prompt answer! – Sam Jun 24 at 17:03
vote up 1 vote down

Microsoft StyleCop dictates using System.* first then your custom library namespace (i.e. the first option).

link|flag
vote up 0 vote down

You've got two things going on here.

  1. Alignment - They aren't lining up anything. They're using 4 space indents (the default)
  2. Order of using statements - Typically you will find the system namespaces first. Under that you will find a hierarchy of levels

    using System;
    using System.Collections;
    using System.Collections.Specialized;

link|flag
vote up 0 vote down

The convetion I follow is:

System namespaces Microsoft namespeces Any external / third party namespaces Company's internal namesapces - common / core Company internal namespaces - local / project

Starting with wider scope towards narrower scope...

  • Partha
link|flag

Your Answer

Get an OpenID
or

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