I am introducing a new namespace called Ebot.Mind for the class Cat
namespace Ebot.Mind
{
class Cat
{
}
}
Now I've a one using namespace called Mind.Logging,
namespace Ebot.Mind
{
using Mind.Logging;
class Cat
{
}
}
Now when I am trying to use any functionality under Mind.Logging namespace, it is not able to find it.
I've never dealt with such problem.
How can it be fixed?