class visibility

  • Thread starter Thread starter Franz
  • Start date Start date
F

Franz

How can I create a class which is private in a namespace? i.e. all classes in the same namspace can access to that class, while
other classes outside the namespace don't have the accessibility.
 
use "internal" to restrict the class from being accessible to outside
assembly

HTH
Kalpesh

Franz said:
How can I create a class which is private in a namespace? i.e. all classes
in the same namspace can access to that class, while
 
Back
Top