Possible Duplicate:
Should Usings be inside or outside the namespace
Hi, friends,
What's the difference between the following 2 code snippets? The using statement is located differently.
namespace CodedUITest
{
using System;
}
and
using System;
namespace CodedUITest
{
}
Thanks!