E
Elisa
Hi,
Isn't there an access modifier that limits visibility to the same namespace?
Regards,
Elisa
Isn't there an access modifier that limits visibility to the same namespace?
Regards,
Elisa
Elisa said:Isn't there an access modifier that limits visibility to the same namespace?
Paul G. Tobey said:You can declare classes in the namespace as 'internal' and only other
classes within the same namespace can see them.
Jon Skeet said:No, that's only other classes within the same *assembly*. Other classes
in different namespaces but the same assembly will be able to see those
classes, but classes in the same namespace but in different assemblies
won't.