https://movep.pixnet.net/blog
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.