1

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!

Community
  • 1
  • 1
smwikipedia
  • 61,609
  • 92
  • 309
  • 482
  • For those with the same question, see here: http://stackoverflow.com/questions/125319/should-usings-be-inside-or-outside-the-namespace – smwikipedia May 18 '11 at 09:16

0 Answers0