I don't know why Asp.net MVC developers put the using directives inside System.Web.Mvc namespace as follows.

namespace System.Web.Mvc
{
    using System;
    using System.Collections.ObjectModel;

    [Serializable]
    public class ModelErrorCollection : Collection<ModelError>
    {

        public void Add(Exception exception)
        {
            Add(new ModelError(exception));
        }

        public void Add(string errorMessage)
        {
            Add(new ModelError(errorMessage));
        }
    }
}

When do we need to put using directives inside a namespace scope?

link|improve this question

2  
I don't know if it's even necessary. The only reason I could think of that might require that is if you have a source file that has multiple namespaces within it. But how often to people really do that? Not a lot I hope. – Jeff Mercado Feb 17 '11 at 5:59
possible duplicate of Should Usings be inside or outside the namespace – Cody Gray Feb 17 '11 at 6:07
feedback

2 Answers

up vote 1 down vote accepted

See Should Usings be inside or outside the namespace

link|improve this answer
feedback

It's your choice. StyleCop tool warns of it as a best practice, however Visual Studio generated files always have usings outside namespace.

Should all the using directives for namespaces be inside the namespace?

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.