up vote 174 down vote favorite
58
share [g+] share [fb]

I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace.

Is there a technical reason for putting the using statements inside instead of outside the namespace?

Edit: There appears that there is no difference after compliation. The reasons for putting them inside the namespace go against the convention of one class per file (my preferred method, no doubt most people also). Thanks for the good answers.

link|improve this question

24  
Just for reference, there are implications beyond just the question of multiple classes per file, so if you're new to this question, please keep reading. – Charlie Jan 22 '10 at 17:23
feedback

6 Answers

up vote 257 down vote accepted

There is actually a (subtle) difference between the two. Imagine you have the following code in File1.cs:


// File1.cs
using System;
namespace Outer.Inner
{
    class Foo
    {
    	static void Bar()
    	{
    		double d = Math.PI;
    	}
    }
}
Now imagine that someone adds another file (File2.cs) to the project that looks like this:


// File2.cs
namespace Outer
{
    class Math
    {
    }
}
The compiler searches Outer before looking at those using statements outside the namespace, so it finds Outer.Math instead of System.Math. Unfortunately (or perhaps fortunately?), Outer.Math has no PI member, so File1 is now broken.

This changes if you put the using inside your namespace declaration, as follows:


// File1b.cs
namespace Outer.Inner
{
    using System;
    class Foo
    {
    	static void Bar()
    	{
    		double d = Math.PI;
    	}
    }
}
Now the compiler searches System before searching Outer, finds System.Math, and all is well.

Some would argue that Math might be a bad name for a user-defined class, since there's already one in System; the point here is just that there is a difference, and it affects the maintainability of your code.

It's also interesting to note what happens if Foo is in namespace Outer, rather than Outer.Inner. In that case, adding Outer.Math in File2 breaks File1 regardless of where the using goes. This implies that the compiler searches the innermost enclosing namespace before it looks at any using statements.

link|improve this answer
6  
good explanation :) – user20358 Nov 12 '08 at 10:27
3  
This is imho a much better reason to put using statements locally than Mark's multiple-namespaces-in-one-file argument. Especially sine the compile can and will complain about the naming clash (see the StyleCop documentation for this rule (e.g. as posted by Jared)). – David Schmitt Dec 30 '09 at 11:27
4  
Excellent and concise explaination. This should really be marked as the answer. – peteski22 Jan 5 '10 at 15:51
+1 for the great response! – Sayed Ibrahim Hashimi Apr 13 '10 at 20:09
Gotta remember to do this instead of just jumping to the global:: qualifier. – Will Nov 30 '10 at 18:26
show 2 more comments
feedback

Putting it inside the namespaces makes the declarations local to that namespace for the file (in case you have multiple namespaces in the file) but if you only have one namespace per file then it doesn't make a difference whether they go outside or inside the namespace.

using ThisNamespace.IsImported.InAllNamespaces.Here;

namespace Namespace1
 { using ThisNamespace.IsImported.InNamespace1.AndNamespace2;

   namespace Namespace2
    { using ThisNamespace.IsImported.InJustNamespace2;
    }       
 }

namespace Namespace3
 { using ThisNamespace.IsImported.InJustNamespace3;
 }
link|improve this answer
feedback

Here is some information.. My style is to put them outside the namespaces.

http://www.hanselman.com/blog/BackToBasicsDoNamespaceUsingDirectivesAffectAssemblyLoading.aspx

link|improve this answer
1  
Damnit, I was going to post that link :P – Slace Sep 24 '08 at 4:03
1  
lol, I could imagine.. it's a good read. – Quintin Robinson Sep 24 '08 at 4:10
1  
@Chris M: uh... the link posted in the answer indicates there's no benefit to in vs. out, actually showing an example that falsifies the claim made in the link you posted... – johnny Aug 19 '11 at 18:07
Aye I didn't fully read the thread but bought in when the MVPs said it was right. A guy disproves it, explains it and shows his code further down... "The IL that the C# compiler generates is the same in either case. In fact the C# compiler generates precisely nothing corresponding to each using directive. Using directives are purely a C#ism, and they have no meaning to .NET itself. (Not true for using statements but those are something quite different.)" groups.google.com/group/wpf-disciples/msg/781738deb0a15c46 – Chris M Aug 24 '11 at 21:52
feedback

According the to StyleCop Documentation:

SA1200: UsingDirectivesMustBePlacedWithinNamespace

Cause A C# using directive is placed outside of a namespace element.

Rule Description A violation of this rule occurs when a using directive or a using-alias directive is placed outside of a namespace element, unless the file does not contain any namespace elements.

For example, the following code would result in two violations of this rule.

using System;
using Guid = System.Guid;

namespace Microsoft.Sample
{
    public class Program
    {
    }
}

The following code, however, would not result in any violations of this rule:

namespace Microsoft.Sample
{
    using System;
    using Guid = System.Guid;

    public class Program
    {
    }
}

This code will compile cleanly, without any compiler errors. However, it is unclear which version of the Guid type is being allocated. If the using directive is moved inside of the namespace, as shown below, a compiler error will occur:

namespace Microsoft.Sample
{
    using Guid = System.Guid;
    public class Guid
    {
        public Guid(string s)
        {
        }
    }

    public class Program
    {
        public static void Main(string[] args)
        {
            Guid g = new Guid("hello");
        }
    }
}

The code fails on the following compiler error, found on the line containing Guid g = new Guid("hello");

CS0576: Namespace 'Microsoft.Sample' contains a definition conflicting with alias 'Guid'

The code creates an alias to the System.Guid type called Guid, and also creates its own type called Guid with a matching constructor interface. Later, the code creates an instance of the type Guid. To create this instance, the compiler must choose between the two different definitions of Guid. When the using-alias directive is placed outside of the namespace element, the compiler will choose the local definition of Guid defined within the local namespace, and completely ignore the using-alias directive defined outside of the namespace. This, unfortunately, is not obvious when reading the code.

When the using-alias directive is positioned within the namespace, however, the compiler has to choose between two different, conflicting Guid types both defined within the same namespace. Both of these types provide a matching constructor. The compiler is unable to make a decision, so it flags the compiler error.

Placing the using-alias directive outside of the namespace is a bad practice because it can lead to confusion in situations such as this, where it is not obvious which version of the type is actually being used. This can potentially lead to a bug which might be difficult to diagnose.

Placing using-alias directives within the namespace element eliminates this as a source of bugs.

  1. Multiple Namespaces

Placing multiple namespace elements within a single file is generally a bad idea, but if and when this is done, it is a good idea to place all using directives within each of the namespace elements, rather than globally at the top of the file. This will scope the namespaces tightly, and will also help to avoid the kind of behavior described above.

It is important to note that when code has been written with using directives placed outside of the namespace, care should be taken when moving these directives within the namespace, to ensure that this is not changing the semantics of the code. As explained above, placing using-alias directives within the namespace element allows the compiler to choose between conflicting types in ways that will not happen when the directives are placed outside of the namespace.

How to Fix Violations To fix a violation of this rule, move all using directives and using-alias directives within the namespace element.

link|improve this answer
@Jared - as I noted in my answer, my prefered workaround / solution is to only ever have one class per file. I think that this is a fairly common convention. – benPearce Sep 14 '09 at 21:01
9  
Indeed, it's also a StyleCop rule! SA1402: A C# document may only contain a single class at the root level unless all of the classes are partial and are of the same type. Showcasing one rule by breaking another just drips with wrong sauce. – Task Mar 5 '10 at 18:09
feedback

Sometimes it makes difference where you put usings: http://stackoverflow.com/questions/292535/linq-to-sql-designer-bug

link|improve this answer
feedback

The accepted answer is good, but to me it seems like a good reason to put the using clauses outside the namespace. If I'm in namespace Outer.Inner I would expect it to use the Math class from Outer.Inner and not System.Math.

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.