Periods in Namespace Names

  • Thread starter Thread starter C# Learner
  • Start date Start date
C

C# Learner

Is the following:

namespace Foo.Bar
{
}

....equivalent to this:

namespace Foo
{
namespace Bar
{
}
}

?
 
Back
Top