Simple Question about Namespaces...

  • Thread starter Thread starter Charlie@NISH
  • Start date Start date
C

Charlie@NISH

Hi:

If I have namespaces like "CompanyX.Data" and "CompanyX.Data.ClientTools".
Does this mean that classes in ClientTools inherit classes in Data?

Thanks,
Charlie
 
Charlie,

No, it does not. Namespaces are nothing more than logical groupings of
classes that share a similar identifier. It doesn't mean that the classes
inherit from anything else or any other conditions are applied.

Hope this helps.
 
No. Namespaces do not have anything to do with inheritance.

Hi:

If I have namespaces like "CompanyX.Data" and "CompanyX.Data.ClientTools".
Does this mean that classes in ClientTools inherit classes in Data?

Thanks,
Charlie
 
Back
Top