I've have the following class
namespace COM.XX.ZZ{
class XX{
}
}
when I try to use it in a different class
using COM.XX.ZZ;
class someClass{
static void main(String args[]){
XX.someMethod();
}
}
Visual studio get confused between the class and the package because both have the same name. Is it a known limitation of visual studio that namespace and class should always be different?