1

Possible Duplicate:
Should Usings be inside or outside the namespace

Hi,

Actually we have two conventions, like
1.

namespace FullFeaturedApp
{
    using System.Web.Mvc;
    using User;

    public class UserManager : Controller{....}
}


2.

using System.Web.Mvc;
using User;
namespace FullFeaturedApp
{
    public class UserManager : Controller
    {
        ....
    }
}

What is the difference between these two systems.

Community
  • 1
  • 1
Saravanan
  • 7,637
  • 5
  • 41
  • 72

0 Answers0