Let's say I have a namespace:
namespace UI
{
}
And I have another namespace:
namespace Domain
{
}
Now let's say in the Domain namespace I also have a UI namespace that is specific for that domain.
namespace Domain
{
namespace UI
{
}
}
Is it possible to import the global UI namespace into the domain UI namespace without importing it in the Domain namespace? I know using namespace is often not a good idea but conceptually the domain UI namespace should be both in the global UI namespace and in the domain namespace.