E
Empire City
Can someone tell me what is the difference in placing the using in the
namespace{} and before the namespace{} ?
namespace MyProj
{
using System;
using System.Web;
}
using System;
using System.Web;
namespace MyProj
{
}
namespace{} and before the namespace{} ?
namespace MyProj
{
using System;
using System.Web;
}
using System;
using System.Web;
namespace MyProj
{
}