顯示具有 C# 標籤的文章。 顯示所有文章
顯示具有 C# 標籤的文章。 顯示所有文章

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.