8.15.2020

What is the difference between namespace dot namespace and nested namespace?(轉貼)

For C# Namespace: 

Is there any difference between:

namespace Outer.Inner
{
}

And

namespace Outer
{
    namespace Inner
    {
    }
}

in C#?


No difference whatsoever, those are the same thing, however the first one is more common.