I was under review of team code. I observe they had used class ClassA
by writing using AAA.BBB;
at the upper portion of the class; also they have sometime used class ClassB
by AAA.BBB.ClassB
. There are two basic questions.
- Is there any performance issue while using above scenario. What is recommended
- When I declare namespace; are all classes get loaded of that namespace or not.
Please assist here. Thanks.