Using namespace prefix versus use statement

Thanks, Daniel.

So, if ClassA is in namespace A and I was instantiating it from code that was in namespace A, I could use the unqualified classname, ClassA, BUT if I was instantiating it from code that was in namespace B, I would have to EITHER import ClassA into namespace B with a USE statement first OR use namespaceA\ClassA to refer to it.

Yes?

Mike